// 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 CHROME_BROWSER_ENTERPRISE_CONNECTORS_TEST_FAKE_CONTENT_ANALYSIS_SDK_CLIENT_H_ #define CHROME_BROWSER_ENTERPRISE_CONNECTORS_TEST_FAKE_CONTENT_ANALYSIS_SDK_CLIENT_H_ #include "base/synchronization/lock.h" #include "third_party/content_analysis_sdk/src/browser/include/content_analysis/sdk/analysis_client.h" namespace enterprise_connectors { // A derivative of content analysis SDK client that creates fake clients // not dependent on having a real service provider agent running. class FakeContentAnalysisSdkClient : public content_analysis::sdk::Client { … }; } // namespace enterprise_connectors #endif // CHROME_BROWSER_ENTERPRISE_CONNECTORS_TEST_FAKE_CONTENT_ANALYSIS_SDK_CLIENT_H_