// 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 COMPONENTS_DEVICE_SIGNALS_CORE_BROWSER_SIGNALS_AGGREGATOR_IMPL_H_ #define COMPONENTS_DEVICE_SIGNALS_CORE_BROWSER_SIGNALS_AGGREGATOR_IMPL_H_ #include <memory> #include <vector> #include "base/memory/weak_ptr.h" #include "components/device_signals/core/browser/signals_aggregator.h" namespace device_signals { class SignalsCollector; class UserPermissionService; enum class UserPermission; class SignalsAggregatorImpl : public SignalsAggregator { … }; } // namespace device_signals #endif // COMPONENTS_DEVICE_SIGNALS_CORE_BROWSER_SIGNALS_AGGREGATOR_IMPL_H_