event_posix.cc (691B)
1 // Copyright 2022 The Chromium Authors. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "event_posix.h" 6 7 #include "scoped_print_handle_posix.h" 8 9 namespace content_analysis { 10 namespace sdk { 11 12 ContentAnalysisEventPosix::ContentAnalysisEventPosix( 13 const BrowserInfo& browser_info, 14 ContentAnalysisRequest req) 15 : ContentAnalysisEventBase(browser_info) { 16 *request() = std::move(req); 17 } 18 19 ResultCode ContentAnalysisEventPosix::Send() { 20 return ResultCode::ERR_UNEXPECTED; 21 } 22 23 std::string ContentAnalysisEventPosix::DebugString() const { 24 return std::string(); 25 } 26 27 } // namespace sdk 28 } // namespace content_analysis