summaryrefslogtreecommitdiffstats
path: root/third_party/content_analysis_sdk/browser/src/client_win.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/content_analysis_sdk/browser/src/client_win.h')
-rw-r--r--third_party/content_analysis_sdk/browser/src/client_win.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/third_party/content_analysis_sdk/browser/src/client_win.h b/third_party/content_analysis_sdk/browser/src/client_win.h
new file mode 100644
index 0000000000..f4bdd834fc
--- /dev/null
+++ b/third_party/content_analysis_sdk/browser/src/client_win.h
@@ -0,0 +1,39 @@
+// 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_WIN_H_
+#define CONTENT_ANALYSIS_BROWSER_SRC_CLIENT_WIN_H_
+
+#include <string>
+
+#include "client_base.h"
+
+namespace content_analysis {
+namespace sdk {
+
+// Client implementaton for Windows.
+class ClientWin : public ClientBase {
+ public:
+ ClientWin(Config config, int* rc);
+ ~ClientWin() override;
+
+ // Client:
+ int Send(ContentAnalysisRequest request,
+ ContentAnalysisResponse* response) override;
+ int Acknowledge(const ContentAnalysisAcknowledgement& ack) override;
+ int CancelRequests(const ContentAnalysisCancelRequests& cancel) override;
+
+ private:
+ static DWORD ConnectToPipe(const std::string& pipename, HANDLE* handle);
+
+ // Performs a clean shutdown of the client.
+ void Shutdown();
+
+ HANDLE hPipe_ = INVALID_HANDLE_VALUE;
+};
+
+} // namespace sdk
+} // namespace content_analysis
+
+#endif // CONTENT_ANALYSIS_BROWSER_SRC_CLIENT_WIN_H_