| Index: chrome/browser/signin/signin_global_error.h
|
| diff --git a/chrome/browser/signin/signin_global_error.h b/chrome/browser/signin/signin_global_error.h
|
| index 1f4b9d34ed415e57853d9f73cba18f3ee1768b47..667b3f01b0af5c5dd8cdbcd294c0d2b0dea44722 100644
|
| --- a/chrome/browser/signin/signin_global_error.h
|
| +++ b/chrome/browser/signin/signin_global_error.h
|
| @@ -12,7 +12,7 @@
|
| #include "google_apis/gaia/google_service_auth_error.h"
|
|
|
| class Profile;
|
| -class SigninManager;
|
| +class SigninManagerBase;
|
|
|
| // Shows auth errors on the wrench menu using a bubble view and a
|
| // menu item. Services that wish to expose auth errors to the user should
|
| @@ -31,7 +31,7 @@ class SigninGlobalError : public GlobalError {
|
| virtual GoogleServiceAuthError GetAuthStatus() const = 0;
|
| };
|
|
|
| - SigninGlobalError(SigninManager* signin_manager, Profile* profile);
|
| + SigninGlobalError(SigninManagerBase* signin_manager, Profile* profile);
|
| virtual ~SigninGlobalError();
|
|
|
| // Adds a provider which the SigninGlobalError object will start querying for
|
| @@ -70,7 +70,7 @@ class SigninGlobalError : public GlobalError {
|
| GoogleServiceAuthError auth_error_;
|
|
|
| // The SigninManager that owns this object.
|
| - SigninManager* signin_manager_;
|
| + SigninManagerBase* signin_manager_;
|
|
|
| // The Profile this object belongs to.
|
| Profile* profile_;
|
|
|