X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fchrome%2Fbrowser%2Fextensions%2Fapi%2Fsigned_in_devices%2Fsigned_in_devices_api.h;h=8fa877551bae1a0e63e7f61f16b239456cc9f044;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=c6f264390842f518ccf84017368d964d19e8bad8;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.h b/src/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.h index c6f2643..8fa8775 100644 --- a/src/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.h +++ b/src/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.h @@ -11,16 +11,16 @@ #include "base/memory/scoped_vector.h" #include "chrome/browser/extensions/chrome_extension_function.h" -namespace browser_sync { +namespace sync_driver { class DeviceInfo; -} // namespace browser_sync +class DeviceInfoTracker; +} // namespace sync_driver namespace extensions { class ExtensionPrefs; } // namespace extensions class Profile; -class ProfileSyncService; namespace extensions { @@ -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 GetAllSignedInDevices( +ScopedVector GetAllSignedInDevices( const std::string& extension_id, Profile* profile); -ScopedVector GetAllSignedInDevices( +ScopedVector GetAllSignedInDevices( const std::string& extension_id, - ProfileSyncService* pss, + sync_driver::DeviceInfoTracker* device_tracker, ExtensionPrefs* extension_prefs); class SignedInDevicesGetFunction : public ChromeSyncExtensionFunction {