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

Unified Diff: chrome/browser/sync/glue/device_info_tracker.h

Issue 430583003: Refactor syncable DEVICE_INFO type from ChangeProcessor to SyncableService - Part 2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed memory leak in DataTypeController unit tests Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/sync/glue/device_info_sync_service_unittest.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/glue/device_info_tracker.h
diff --git a/chrome/browser/sync/glue/device_info_tracker.h b/chrome/browser/sync/glue/device_info_tracker.h
new file mode 100644
index 0000000000000000000000000000000000000000..8244401b7ebb8ffd7086a705426588fdb93cd71a
--- /dev/null
+++ b/chrome/browser/sync/glue/device_info_tracker.h
@@ -0,0 +1,40 @@
+// 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 CHROME_BROWSER_SYNC_GLUE_DEVICE_INFO_TRACKER_H_
+#define CHROME_BROWSER_SYNC_GLUE_DEVICE_INFO_TRACKER_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/scoped_vector.h"
+#include "chrome/browser/sync/glue/device_info.h"
+
+namespace browser_sync {
+
+// Interface for tracking synced DeviceInfo.
+class DeviceInfoTracker {
+ public:
+ virtual ~DeviceInfoTracker() {}
+
+ // Observer class for listening to device info changes.
+ class Observer {
+ public:
+ virtual void OnDeviceInfoChange() = 0;
+ };
+
+ // Gets DeviceInfo the synced device with specified client ID.
+ // Returns an empty scoped_ptr if device with the given |client_id| hasn't
+ // been synced.
+ virtual scoped_ptr<DeviceInfo> GetDeviceInfo(
+ const std::string& client_id) const = 0;
+ // Gets DeviceInfo for all synced devices (including the local one).
+ virtual ScopedVector<DeviceInfo> GetAllDeviceInfo() const = 0;
+ // Registers an observer to be called on syncing any updated DeviceInfo.
+ virtual void AddObserver(Observer* observer) = 0;
+ // Unregisters an observer.
+ virtual void RemoveObserver(Observer* observer) = 0;
+};
+
+} // namespace browser_sync
+
+#endif // CHROME_BROWSER_SYNC_GLUE_DEVICE_INFO_TRACKER_H_
« no previous file with comments | « chrome/browser/sync/glue/device_info_sync_service_unittest.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698