summaryrefslogtreecommitdiffstats
path: root/third_party/content_analysis_sdk/agent/src/event_mac.cc
blob: 46822e473d0e699c680b6ef61f26aa51c00b66f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2022 The Chromium Authors.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "event_mac.h"

#include "scoped_print_handle_mac.h"

namespace content_analysis {
namespace sdk {

ContentAnalysisEventMac::ContentAnalysisEventMac(
    const BrowserInfo& browser_info,
    ContentAnalysisRequest req)
    : ContentAnalysisEventBase(browser_info) {
  *request() = std::move(req);
}

ResultCode ContentAnalysisEventMac::Send() {
  return ResultCode::ERR_UNEXPECTED;
}

std::string ContentAnalysisEventMac::DebugString() const {
  return std::string();
}


}  // namespace sdk
}  // namespace content_analysis