summaryrefslogtreecommitdiffstats
path: root/third_party/content_analysis_sdk/browser/src/client_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/content_analysis_sdk/browser/src/client_base.h')
-rw-r--r--third_party/content_analysis_sdk/browser/src/client_base.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/third_party/content_analysis_sdk/browser/src/client_base.h b/third_party/content_analysis_sdk/browser/src/client_base.h
new file mode 100644
index 0000000000..f8d7849394
--- /dev/null
+++ b/third_party/content_analysis_sdk/browser/src/client_base.h
@@ -0,0 +1,34 @@
+// 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_BROWSER_SRC_CLIENT_BASE_H_
+#define CONTENT_ANALYSIS_BROWSER_SRC_CLIENT_BASE_H_
+
+#include "content_analysis/sdk/analysis_client.h"
+
+namespace content_analysis {
+namespace sdk {
+
+// Base Client class with code common to all platforms.
+class ClientBase : public Client {
+ public:
+ // Client:
+ const Config& GetConfig() const override;
+ const AgentInfo& GetAgentInfo() const override;
+
+ protected:
+ ClientBase(Config config);
+
+ const Config& configuration() const { return config_; }
+ AgentInfo& agent_info() { return agent_info_; }
+
+private:
+ Config config_;
+ AgentInfo agent_info_;
+};
+
+} // namespace sdk
+} // namespace content_analysis
+
+#endif // CONTENT_ANALYSIS_BROWSER_SRC_CLIENT_BASE_H_ \ No newline at end of file