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

Unified Diff: chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.cc

Issue 2354613002: [Sync] Fix namespaces for the browser_sync component. (Closed)
Patch Set: Address comments. Created 4 years, 3 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: chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.cc
diff --git a/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.cc b/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.cc
index 23604f713071f370d2b8087d3515524b7e9d29c2..1e127cd83ca68f1512c8841f000449ac83e03f05 100644
--- a/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.cc
+++ b/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api.cc
@@ -99,7 +99,8 @@ std::vector<std::unique_ptr<DeviceInfo>> GetAllSignedInDevices(
std::unique_ptr<DeviceInfo> GetLocalDeviceInfo(const std::string& extension_id,
Profile* profile) {
- ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile);
+ browser_sync::ProfileSyncService* pss =
+ ProfileSyncServiceFactory::GetForProfile(profile);
if (!pss) {
return std::unique_ptr<DeviceInfo>();
}

Powered by Google App Engine
This is Rietveld 408576698