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

Unified Diff: chrome/browser/ui/sync/one_click_signin_sync_starter.h

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/ui/sync/one_click_signin_sync_starter.h
diff --git a/chrome/browser/ui/sync/one_click_signin_sync_starter.h b/chrome/browser/ui/sync/one_click_signin_sync_starter.h
index 8bd0dae64c80eeb7e004d18f1c9e2dc0717ad2dc..ca88c5e6851de1d016d1088a41a7dc0505e1721c 100644
--- a/chrome/browser/ui/sync/one_click_signin_sync_starter.h
+++ b/chrome/browser/ui/sync/one_click_signin_sync_starter.h
@@ -20,15 +20,18 @@
#include "content/public/browser/web_contents_observer.h"
class Browser;
+
+namespace browser_sync {
class ProfileSyncService;
+} // namespace browser_sync
namespace content {
class WebContents;
-}
+} // namespace content
namespace sync_driver {
class SyncSetupInProgressHandle;
-}
+} // namespace sync_driver
// Waits for successful sign-in notification from the signin manager and then
// starts the sync machine. Instances of this class delete themselves once
@@ -197,7 +200,7 @@ class OneClickSigninSyncStarter : public SigninTracker::Observer,
// disabled during setup. In this case GetProfileSyncService will return NULL,
// but we still need to call PSS::SetSetupInProgress(false). For this purpose
// call FinishProfileSyncServiceSetup() function.
- ProfileSyncService* GetProfileSyncService();
+ browser_sync::ProfileSyncService* GetProfileSyncService();
void FinishProfileSyncServiceSetup();

Powered by Google App Engine
This is Rietveld 408576698