| 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);
|
| };
|
|
|