// 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_ANALYSIS_CONTENT_ANALYSIS_SDK_MANAGER_H_ #define CHROME_BROWSER_ENTERPRISE_CONNECTORS_ANALYSIS_CONTENT_ANALYSIS_SDK_MANAGER_H_ #include <map> #include <memory> #include "base/memory/ref_counted.h" #include "base/memory/scoped_refptr.h" #include "base/no_destructor.h" #include "third_party/content_analysis_sdk/src/browser/include/content_analysis/sdk/analysis_client.h" namespace enterprise_connectors { // Manages different content analysis client connections for different // service providers. Clients are shared by all profiles running in this // browser. This class should only be accessed on the UI thread. class ContentAnalysisSdkManager { … }; } // namespace enterprise_connectors #endif // CHROME_BROWSER_ENTERPRISE_CONNECTORS_ANALYSIS_CONTENT_ANALYSIS_SDK_MANAGER_H_