// 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_FILE_SYSTEM_SIGNALS_COLLECTOR_H_ #define COMPONENTS_DEVICE_SIGNALS_CORE_BROWSER_FILE_SYSTEM_SIGNALS_COLLECTOR_H_ #include <map> #include <vector> #include "base/memory/weak_ptr.h" #include "base/sequence_checker.h" #include "components/device_signals/core/browser/base_signals_collector.h" namespace device_signals { struct FileSystemItem; class SystemSignalsServiceHost; // Collector in charge of collecting device signals that live in the file // system. class FileSystemSignalsCollector : public BaseSignalsCollector { … }; } // namespace device_signals #endif // COMPONENTS_DEVICE_SIGNALS_CORE_BROWSER_FILE_SYSTEM_SIGNALS_COLLECTOR_H_