Bug 1888590 - Mark some subtests on trusted-types-event-handlers.html as failing...
[gecko.git] / third_party / content_analysis_sdk / agent / src / event_posix.h
blobf3d0e243307011aee6a1e67a1f687c3a72ea49b1
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.
5 #ifndef CONTENT_ANALYSIS_SRC_EVENT_POSIX_H_
6 #define CONTENT_ANALYSIS_SRC_EVENT_POSIX_H_
8 #include "event_base.h"
10 namespace content_analysis {
11 namespace sdk {
13 // ContentAnalysisEvent implementaton for linux.
14 class ContentAnalysisEventPosix : public ContentAnalysisEventBase {
15 public:
16 ContentAnalysisEventPosix(const BrowserInfo& browser_info,
17 ContentAnalysisRequest request);
19 // ContentAnalysisEvent:
20 ResultCode Send() override;
21 std::string DebugString() const override;
23 // TODO(rogerta): Fill in implementation.
26 } // namespace sdk
27 } // namespace content_analysis
29 #endif // CONTENT_ANALYSIS_SRC_EVENT_POSIX_H_