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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: components/sync_driver/device_info_tracker.h
diff --git a/components/sync_driver/device_info_tracker.h b/components/sync_driver/device_info_tracker.h
deleted file mode 100644
index d19069b991ce4a17e998da0cf45670d9fe415b99..0000000000000000000000000000000000000000
--- a/components/sync_driver/device_info_tracker.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// 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_DRIVER_DEVICE_INFO_TRACKER_H_
-#define COMPONENTS_SYNC_DRIVER_DEVICE_INFO_TRACKER_H_
-
-#include <memory>
-#include <string>
-
-#include "base/memory/scoped_vector.h"
-#include "components/sync_driver/device_info.h"
-
-namespace sync_driver {
-
-// 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;
- };
-
- // Returns true when DeviceInfo datatype is enabled and syncing.
- virtual bool IsSyncing() const = 0;
- // Gets DeviceInfo the synced device with specified client ID.
- // Returns an empty unique_ptr if device with the given |client_id| hasn't
- // been synced.
- virtual std::unique_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;
- // Returns the count of active devices.
- virtual int CountActiveDevices() const = 0;
-};
-
-} // namespace sync_driver
-
-#endif // COMPONENTS_SYNC_DRIVER_DEVICE_INFO_TRACKER_H_
« 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