// Copyright 2023 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_EXTENSIONS_EXTENSION_TELEMETRY_SERVICE_VERDICT_HANDLER_H_ #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TELEMETRY_SERVICE_VERDICT_HANDLER_H_ #include "base/memory/raw_ptr.h" #include "chrome/browser/extensions/blocklist.h" #include "extensions/browser/extension_registry.h" namespace extensions { class ExtensionPrefs; class ExtensionService; // These values are logged to UMA. Entries should not be renumbered and // numeric values should never be reused. Please keep in sync with // "SBExtensionTelemetryDisableReason" in // src/tools/metrics/histograms/enums.xml. enum class ExtensionTelemetryDisableReason { … }; // Manages the Extension Telemetry service verdict states in extension pref. class ExtensionTelemetryServiceVerdictHandler { … }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TELEMETRY_SERVICE_VERDICT_HANDLER_H_