Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Side by Side Diff: components/sync_driver/device_info_tracker.h

Issue 2203673002: [Sync] Move //components/sync_driver to //components/sync/driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sd-a
Patch Set: Full change rebased on static lib. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_SYNC_DRIVER_DEVICE_INFO_TRACKER_H_
6 #define COMPONENTS_SYNC_DRIVER_DEVICE_INFO_TRACKER_H_
7
8 #include <memory>
9 #include <string>
10
11 #include "base/memory/scoped_vector.h"
12 #include "components/sync_driver/device_info.h"
13
14 namespace sync_driver {
15
16 // Interface for tracking synced DeviceInfo.
17 class DeviceInfoTracker {
18 public:
19 virtual ~DeviceInfoTracker() {}
20
21 // Observer class for listening to device info changes.
22 class Observer {
23 public:
24 virtual void OnDeviceInfoChange() = 0;
25 };
26
27 // Returns true when DeviceInfo datatype is enabled and syncing.
28 virtual bool IsSyncing() const = 0;
29 // Gets DeviceInfo the synced device with specified client ID.
30 // Returns an empty unique_ptr if device with the given |client_id| hasn't
31 // been synced.
32 virtual std::unique_ptr<DeviceInfo> GetDeviceInfo(
33 const std::string& client_id) const = 0;
34 // Gets DeviceInfo for all synced devices (including the local one).
35 virtual ScopedVector<DeviceInfo> GetAllDeviceInfo() const = 0;
36 // Registers an observer to be called on syncing any updated DeviceInfo.
37 virtual void AddObserver(Observer* observer) = 0;
38 // Unregisters an observer.
39 virtual void RemoveObserver(Observer* observer) = 0;
40 // Returns the count of active devices.
41 virtual int CountActiveDevices() const = 0;
42 };
43
44 } // namespace sync_driver
45
46 #endif // COMPONENTS_SYNC_DRIVER_DEVICE_INFO_TRACKER_H_
OLDNEW
« no previous file with comments | « components/sync_driver/device_info_sync_service_unittest.cc ('k') | components/sync_driver/device_info_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698