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

Unified Diff: chrome/browser/ui/webui/options/sync_setup_handler.h

Issue 2354613002: [Sync] Fix namespaces for the browser_sync component. (Closed)
Patch Set: Self-review. 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/webui/options/sync_setup_handler.h
diff --git a/chrome/browser/ui/webui/options/sync_setup_handler.h b/chrome/browser/ui/webui/options/sync_setup_handler.h
index 2c5390e5a88c4a1ac539b2e70b5ac3d45c9e325b..6791bb11f71c3cffe88b059ad49fc643c20d6434 100644
--- a/chrome/browser/ui/webui/options/sync_setup_handler.h
+++ b/chrome/browser/ui/webui/options/sync_setup_handler.h
@@ -16,9 +16,12 @@
#include "chrome/browser/ui/webui/signin/login_ui_service.h"
class LoginUIService;
-class ProfileSyncService;
class SigninManagerBase;
+namespace browser_sync {
+class ProfileSyncService;
+}
skym 2016/09/22 17:25:59 Closing namespaces.
maxbogue 2016/09/22 19:41:15 Done.
+
namespace content {
class WebContents;
}
@@ -97,7 +100,7 @@ class SyncSetupHandler : public options::OptionsPageUIHandler,
// Helper routine that gets the ProfileSyncService associated with the parent
// profile.
- ProfileSyncService* GetSyncService() const;
+ browser_sync::ProfileSyncService* GetSyncService() const;
// Returns the LoginUIService for the parent profile.
LoginUIService* GetLoginUIService() const;

Powered by Google App Engine
This is Rietveld 408576698