[go: nahoru, domu]

blob: 5c6927daf4d9d875783d423d405ed674b39f86da [file] [log] [blame]
// Copyright 2019 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_SYNC_DEVICE_INFO_FAKE_LOCAL_DEVICE_INFO_PROVIDER_H_
#define COMPONENTS_SYNC_DEVICE_INFO_FAKE_LOCAL_DEVICE_INFO_PROVIDER_H_
#include "components/sync_device_info/device_info.h"
#include "components/sync_device_info/local_device_info_provider.h"
namespace syncer {
class FakeLocalDeviceInfoProvider : public LocalDeviceInfoProvider {
public:
FakeLocalDeviceInfoProvider();
FakeLocalDeviceInfoProvider(const FakeLocalDeviceInfoProvider&) = delete;
FakeLocalDeviceInfoProvider& operator=(const FakeLocalDeviceInfoProvider&) =
delete;
~FakeLocalDeviceInfoProvider() override;
// Overrides for LocalDeviceInfoProvider.
version_info::Channel GetChannel() const override;
const DeviceInfo* GetLocalDeviceInfo() const override;
base::CallbackListSubscription RegisterOnInitializedCallback(
const base::RepeatingClosure& callback) override;
void SetReady(bool ready);
DeviceInfo* GetMutableDeviceInfo();
private:
DeviceInfo device_info_;
bool ready_ = true;
base::RepeatingClosureList closure_list_;
};
} // namespace syncer
#endif // COMPONENTS_SYNC_DEVICE_INFO_FAKE_LOCAL_DEVICE_INFO_PROVIDER_H_