summaryrefslogtreecommitdiffstats
path: root/third_party/content_analysis_sdk/agent/src/event_mac.h
blob: 0d89c470356d5c682094cd536c64affbb81666b3 (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.

#ifndef CONTENT_ANALYSIS_SRC_EVENT_MAC_H_
#define CONTENT_ANALYSIS_SRC_EVENT_MAC_H_

#include "event_base.h"

namespace content_analysis {
namespace sdk {

// ContentAnalysisEvent implementaton for macOS.
class ContentAnalysisEventMac : public ContentAnalysisEventBase {
 public:
  ContentAnalysisEventMac(const BrowserInfo& browser_info,
                          ContentAnalysisRequest request);

  // ContentAnalysisEvent:
  ResultCode Send() override;
  std::string DebugString() const override;

  // TODO(rogerta): Fill in implementation.
};

}  // namespace sdk
}  // namespace content_analysis

#endif  // CONTENT_ANALYSIS_SRC_EVENT_MAC_H_