| 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 ef6d31f4e254887c50ba063ede96bc23324e6704..264600c4b9c945c95afa40b80c8f10cce66fba0d 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
 | 
| @@ -5,21 +5,22 @@
 | 
|  #ifndef CHROME_BROWSER_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_API_H__
 | 
|  #define CHROME_BROWSER_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_API_H__
 | 
|  
 | 
| +#include <memory>
 | 
|  #include <string>
 | 
|  #include <vector>
 | 
|  
 | 
|  #include "chrome/browser/extensions/chrome_extension_function.h"
 | 
|  
 | 
| -namespace sync_driver {
 | 
| -class DeviceInfo;
 | 
| -class DeviceInfoTracker;
 | 
| -}  // namespace sync_driver
 | 
| +class Profile;
 | 
|  
 | 
|  namespace extensions {
 | 
|  class ExtensionPrefs;
 | 
|  }  // namespace extensions
 | 
|  
 | 
| -class Profile;
 | 
| +namespace syncer {
 | 
| +class DeviceInfo;
 | 
| +class DeviceInfoTracker;
 | 
| +}  // namespace syncer
 | 
|  
 | 
|  namespace extensions {
 | 
|  
 | 
| @@ -27,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.
 | 
| -std::vector<std::unique_ptr<sync_driver::DeviceInfo>> GetAllSignedInDevices(
 | 
| +std::vector<std::unique_ptr<syncer::DeviceInfo>> GetAllSignedInDevices(
 | 
|      const std::string& extension_id,
 | 
|      Profile* profile);
 | 
|  
 | 
| -std::vector<std::unique_ptr<sync_driver::DeviceInfo>> GetAllSignedInDevices(
 | 
| +std::vector<std::unique_ptr<syncer::DeviceInfo>> GetAllSignedInDevices(
 | 
|      const std::string& extension_id,
 | 
| -    sync_driver::DeviceInfoTracker* device_tracker,
 | 
| +    syncer::DeviceInfoTracker* device_tracker,
 | 
|      ExtensionPrefs* extension_prefs);
 | 
|  
 | 
|  class SignedInDevicesGetFunction : public ChromeSyncExtensionFunction {
 | 
| 
 |