| Index: chrome/browser/signin/fake_signin_manager.h
|
| diff --git a/chrome/browser/signin/fake_signin_manager.h b/chrome/browser/signin/fake_signin_manager.h
|
| index 11ea3842e4a3d534475bdacd0d1e2789e8faa48f..a58f2a52275acf6487b7dc17f4c9ef43080c3afb 100644
|
| --- a/chrome/browser/signin/fake_signin_manager.h
|
| +++ b/chrome/browser/signin/fake_signin_manager.h
|
| @@ -11,7 +11,7 @@
|
| #include "chrome/browser/signin/signin_manager.h"
|
|
|
| class Profile;
|
| -class ProfileKeyedService;
|
| +class BrowserContextKeyedService;
|
|
|
| // Overrides InitTokenService to do-nothing in tests.
|
| class FakeSigninManagerBase : public SigninManagerBase {
|
| @@ -21,8 +21,8 @@ class FakeSigninManagerBase : public SigninManagerBase {
|
|
|
| virtual void InitTokenService() OVERRIDE;
|
|
|
| - // Helper function to be used with ProfileKeyedService::SetTestingFactory().
|
| - static ProfileKeyedService* Build(content::BrowserContext* profile);
|
| + // Helper function to be used with BrowserContextKeyedService::SetTestingFactory().
|
| + static BrowserContextKeyedService* Build(content::BrowserContext* profile);
|
| };
|
|
|
| #if !defined(OS_CHROMEOS)
|
| @@ -53,8 +53,8 @@ class FakeSigninManager : public SigninManager {
|
|
|
| virtual void CompletePendingSignin() OVERRIDE;
|
|
|
| - // Helper function to be used with ProfileKeyedService::SetTestingFactory().
|
| - static ProfileKeyedService* Build(content::BrowserContext* profile);
|
| + // Helper function to be used with BrowserContextKeyedService::SetTestingFactory().
|
| + static BrowserContextKeyedService* Build(content::BrowserContext* profile);
|
| };
|
|
|
| #endif // !defined (OS_CHROMEOS)
|
|
|