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

Unified Diff: chrome/browser/sync/sync_global_error.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
« no previous file with comments | « chrome/browser/sync/sync_error_notifier_factory_ash.cc ('k') | chrome/browser/sync/sync_global_error.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/sync_global_error.h
diff --git a/chrome/browser/sync/sync_global_error.h b/chrome/browser/sync/sync_global_error.h
index ac853a287c980c41a9535adbff21178468393cf1..7b0258f97add728f5e26e08fde4f9b5ce39e1936 100644
--- a/chrome/browser/sync/sync_global_error.h
+++ b/chrome/browser/sync/sync_global_error.h
@@ -13,7 +13,10 @@
class GlobalErrorService;
class LoginUIService;
+
+namespace browser_sync {
class ProfileSyncService;
+} // namespace browser_sync
// Shows sync errors on the wrench menu using a bubble view and a menu item.
class SyncGlobalError : public GlobalErrorWithStandardBubble,
@@ -23,7 +26,7 @@ class SyncGlobalError : public GlobalErrorWithStandardBubble,
SyncGlobalError(GlobalErrorService* global_error_service,
LoginUIService* login_ui_service,
SyncErrorController* error_controller,
- ProfileSyncService* profile_sync_service);
+ browser_sync::ProfileSyncService* profile_sync_service);
~SyncGlobalError() override;
// KeyedService:
@@ -59,7 +62,7 @@ class SyncGlobalError : public GlobalErrorWithStandardBubble,
// ProfileSyncService this SyncGlobalError depends on.
SyncErrorController* error_controller_;
- const ProfileSyncService* sync_service_;
+ const browser_sync::ProfileSyncService* sync_service_;
DISALLOW_COPY_AND_ASSIGN(SyncGlobalError);
};
« no previous file with comments | « chrome/browser/sync/sync_error_notifier_factory_ash.cc ('k') | chrome/browser/sync/sync_global_error.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698