Bug 1888590 - Mark some subtests on trusted-types-event-handlers.html as failing...
[gecko.git] / third_party / content_analysis_sdk / agent / src / scoped_print_handle_base.h
blob1ae20381d76c97a7fcfe829bb52ec96c5d4c1b91
1 // Copyright 2023 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_AGENT_SRC_SCOPED_PRINT_HANDLE_BASE_H_
6 #define CONTENT_ANALYSIS_AGENT_SRC_SCOPED_PRINT_HANDLE_BASE_H_
8 #include "content_analysis/sdk/analysis_agent.h"
10 namespace content_analysis {
11 namespace sdk {
13 class ScopedPrintHandleBase : public ScopedPrintHandle {
14 public:
15 ScopedPrintHandleBase(const ContentAnalysisRequest::PrintData& print_data);
17 size_t size() override;
18 protected:
19 size_t size_ = 0;
22 } // namespace sdk
23 } // namespace content_analysis
25 #endif // CONTENT_ANALYSIS_AGENT_SRC_SCOPED_PRINT_HANDLE_BASE_H_