blob: 1122a08719d773be3780d4c85044f1e9aab8db8c [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// 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_LOCAL_DEVICE_INFO_PROVIDER_MOCK_H_
#define COMPONENTS_SYNC_DEVICE_INFO_LOCAL_DEVICE_INFO_PROVIDER_MOCK_H_
#include <memory>
#include <string>
#include "components/sync/device_info/device_info.h"
#include "components/sync/device_info/local_device_info_provider.h"
namespace syncer {
class LocalDeviceInfoProviderMock : public LocalDeviceInfoProvider {
public:
// Creates uninitialized provider.
LocalDeviceInfoProviderMock();
// Creates initialized provider with the specified device info.
LocalDeviceInfoProviderMock(const std::string& guid,
const std::string& client_name,
const std::string& chrome_version,
const std::string& sync_user_agent,
const sync_pb::SyncEnums::DeviceType device_type,
const std::string& signin_scoped_device_id);
~LocalDeviceInfoProviderMock() override;
const DeviceInfo* GetLocalDeviceInfo() const override;
std::string GetSyncUserAgent() const override;
std::string GetLocalSyncCacheGUID() const override;
void Initialize(const std::string& cache_guid,
const std::string& session_name,
const std::string& signin_scoped_device_id) override;
std::unique_ptr<Subscription> RegisterOnInitializedCallback(
const base::Closure& callback) override;
void Clear() override;
void Initialize(std::unique_ptr<DeviceInfo> local_device_info);
void SetInitialized(bool is_initialized);
private:
bool is_initialized_;
std::unique_ptr<DeviceInfo> local_device_info_;
base::CallbackList<void(void)> callback_list_;
};
} // namespace syncer
#endif // COMPONENTS_SYNC_DEVICE_INFO_LOCAL_DEVICE_INFO_PROVIDER_MOCK_H_