| Index: chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.h
|
| diff --git a/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.h b/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.h
|
| index 774ca758ce10ac0329968fbe5149525bf1004afe..8fa877551bae1a0e63e7f61f16b239456cc9f044 100644
|
| --- a/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.h
|
| +++ b/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.h
|
| @@ -11,10 +11,10 @@
|
| #include "base/memory/scoped_vector.h"
|
| #include "chrome/browser/extensions/chrome_extension_function.h"
|
|
|
| -namespace browser_sync {
|
| +namespace sync_driver {
|
| class DeviceInfo;
|
| class DeviceInfoTracker;
|
| -} // namespace browser_sync
|
| +} // namespace sync_driver
|
|
|
| namespace extensions {
|
| class ExtensionPrefs;
|
| @@ -28,13 +28,13 @@ namespace extensions {
|
| // filled with the list of devices associated with the account signed into this
|
| // |profile|. This function needs the |extension_id| because the
|
| // public device ids are set per extension.
|
| -ScopedVector<browser_sync::DeviceInfo> GetAllSignedInDevices(
|
| +ScopedVector<sync_driver::DeviceInfo> GetAllSignedInDevices(
|
| const std::string& extension_id,
|
| Profile* profile);
|
|
|
| -ScopedVector<browser_sync::DeviceInfo> GetAllSignedInDevices(
|
| +ScopedVector<sync_driver::DeviceInfo> GetAllSignedInDevices(
|
| const std::string& extension_id,
|
| - browser_sync::DeviceInfoTracker* device_tracker,
|
| + sync_driver::DeviceInfoTracker* device_tracker,
|
| ExtensionPrefs* extension_prefs);
|
|
|
| class SignedInDevicesGetFunction : public ChromeSyncExtensionFunction {
|
|
|