// Copyright 2021 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_SAFE_BROWSING_EXTENSION_TELEMETRY_EXTENSION_SIGNAL_PROCESSOR_H_ #define CHROME_BROWSER_SAFE_BROWSING_EXTENSION_TELEMETRY_EXTENSION_SIGNAL_PROCESSOR_H_ #include <memory> #include "extensions/common/extension_id.h" namespace safe_browsing { class ExtensionSignal; class ExtensionTelemetryReportRequest_SignalInfo; // An abstract signal processing class. Subclasses provide type-specific // functionality to process the signal for telemetry reports. class ExtensionSignalProcessor { … }; } // namespace safe_browsing #endif // CHROME_BROWSER_SAFE_BROWSING_EXTENSION_TELEMETRY_EXTENSION_SIGNAL_PROCESSOR_H_