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.
7 #include "scoped_print_handle_mac.h"
9 namespace content_analysis
{
12 ContentAnalysisEventMac::ContentAnalysisEventMac(
13 const BrowserInfo
& browser_info
,
14 ContentAnalysisRequest req
)
15 : ContentAnalysisEventBase(browser_info
) {
16 *request() = std::move(req
);
19 ResultCode
ContentAnalysisEventMac::Send() {
20 return ResultCode::ERR_UNEXPECTED
;
23 std::string
ContentAnalysisEventMac::DebugString() const {
29 } // namespace content_analysis