blob: 1f9a09413454eec12b37603513dcf8c9231dc96b [file] [log] [blame]
// Copyright 2019 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_DEVICE_INFO_SYNC_CLIENT_H_
#define COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_SYNC_CLIENT_H_
#include <string>
#include "base/macros.h"
#include "base/optional.h"
#include "components/sync/base/model_type.h"
#include "components/sync_device_info/device_info.h"
namespace syncer {
// Interface for clients of DeviceInfoSyncService.
class DeviceInfoSyncClient {
public:
DeviceInfoSyncClient();
virtual ~DeviceInfoSyncClient();
virtual std::string GetSigninScopedDeviceId() const = 0;
virtual bool GetSendTabToSelfReceivingEnabled() const = 0;
virtual base::Optional<DeviceInfo::SharingInfo> GetLocalSharingInfo()
const = 0;
// Returns current FCM registration token if known, empty if the invalidation
// service is not enabled. base::nullopt will be returned if the token has
// been requested but hasn't been retrieved yet.
virtual base::Optional<std::string> GetFCMRegistrationToken() const = 0;
// A list of enabled data types, base::nullopt if the invalidation service is
// not initialized yet.
virtual base::Optional<ModelTypeSet> GetInterestedDataTypes() const = 0;
private:
DISALLOW_COPY_AND_ASSIGN(DeviceInfoSyncClient);
};
} // namespace syncer
#endif // COMPONENTS_SYNC_DEVICE_INFO_DEVICE_INFO_SYNC_CLIENT_H_