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

Unified Diff: chrome/browser/sync/sync_global_error.h

Issue 12502017: signin: pull basic SigninManager functionality into new SigninManagerBase class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix override Created 7 years, 9 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/sync/sync_global_error.h
diff --git a/chrome/browser/sync/sync_global_error.h b/chrome/browser/sync/sync_global_error.h
index 8b9c2f2e0937e2abde638cf3e1488e51f9eb39e5..cd4108463aa35d771ecb1afae138d5290c277d23 100644
--- a/chrome/browser/sync/sync_global_error.h
+++ b/chrome/browser/sync/sync_global_error.h
@@ -11,14 +11,14 @@
#include "chrome/browser/ui/global_error/global_error.h"
class ProfileSyncService;
-class SigninManager;
+class SigninManagerBase;
// Shows sync errors on the wrench menu using a bubble view and a
// menu item.
class SyncGlobalError : public GlobalError,
public ProfileSyncServiceObserver {
public:
- SyncGlobalError(ProfileSyncService* service, SigninManager* signin);
+ SyncGlobalError(ProfileSyncService* service, SigninManagerBase* signin);
virtual ~SyncGlobalError();
virtual bool HasMenuItem() OVERRIDE;
@@ -43,7 +43,7 @@ class SyncGlobalError : public GlobalError,
string16 bubble_message_;
string16 menu_label_;
ProfileSyncService* service_;
- SigninManager* signin_;
+ SigninManagerBase* signin_;
DISALLOW_COPY_AND_ASSIGN(SyncGlobalError);
};

Powered by Google App Engine
This is Rietveld 408576698