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

Unified Diff: chrome/browser/ui/webui/options/sync_setup_handler.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/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..adfd30ed5c406b01522dfdf2dfa70ab5939685ad 100644
--- a/chrome/browser/ui/webui/options/sync_setup_handler.h
+++ b/chrome/browser/ui/webui/options/sync_setup_handler.h
@@ -16,20 +16,23 @@
#include "chrome/browser/ui/webui/signin/login_ui_service.h"
class LoginUIService;
-class ProfileSyncService;
class SigninManagerBase;
+namespace browser_sync {
+class ProfileSyncService;
+} // namespace browser_sync
+
namespace content {
class WebContents;
-}
+} // namespace content
namespace signin_metrics {
enum class AccessPoint;
-}
+} // namespace signin_metrics
namespace sync_driver {
class SyncSetupInProgressHandle;
-}
+} // namespace sync_driver
class SyncSetupHandler : public options::OptionsPageUIHandler,
public SyncStartupTracker::Observer,
@@ -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;
« no previous file with comments | « chrome/browser/ui/webui/options/password_manager_handler.cc ('k') | chrome/browser/ui/webui/options/sync_setup_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698