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

// 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.

#include "components/device_signals/core/browser/settings_signals_collector.h"

#include <utility>

#include "base/check.h"
#include "base/functional/bind.h"
#include "components/device_signals/core/browser/settings_client.h"
#include "components/device_signals/core/browser/signals_types.h"

namespace device_signals {

SettingsSignalsCollector::SettingsSignalsCollector(
    std::unique_ptr<SettingsClient> settings_client)
    :{}

SettingsSignalsCollector::~SettingsSignalsCollector() = default;

void SettingsSignalsCollector::GetSettingsSignal(
    const SignalsAggregationRequest& request,
    SignalsAggregationResponse& response,
    base::OnceClosure done_closure) {}

void SettingsSignalsCollector::OnSettingsSignalCollected(
    SignalsAggregationResponse& response,
    base::OnceClosure done_closure,
    const std::vector<SettingsItem>& settings_items) {}

}  // namespace device_signals