chromium/components/device_signals/core/browser/settings_signals_collector.h

// 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_SETTINGS_SIGNALS_COLLECTOR_H_
#define COMPONENTS_DEVICE_SIGNALS_CORE_BROWSER_SETTINGS_SIGNALS_COLLECTOR_H_

#include <memory>
#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 SettingsItem;
class SettingsClient;

// Collector in charge of collecting device signals that live in the settings
// (registry on windows, PLIST on mac).
class SettingsSignalsCollector : public BaseSignalsCollector {};

}  // namespace device_signals

#endif  // COMPONENTS_DEVICE_SIGNALS_CORE_BROWSER_SETTINGS_SIGNALS_COLLECTOR_H_