Index: chrome/browser/signin/fake_signin_manager.cc |
diff --git a/chrome/browser/signin/fake_signin_manager.cc b/chrome/browser/signin/fake_signin_manager.cc |
index b8296721106b2f2df6269d929bb2a922f91ce8d7..c313a12d1d130b5f0db2cde2aba9a0487621d508 100644 |
--- a/chrome/browser/signin/fake_signin_manager.cc |
+++ b/chrome/browser/signin/fake_signin_manager.cc |
@@ -41,8 +41,9 @@ void FakeSigninManagerBase::SignOut() { |
} |
// static |
-ProfileKeyedService* FakeSigninManagerBase::Build(Profile* profile) { |
- return new FakeSigninManagerBase(profile); |
+ProfileKeyedService* FakeSigninManagerBase::Build( |
+ content::BrowserContext* profile) { |
+ return new FakeSigninManagerBase(static_cast<Profile*>(profile)); |
} |
#if !defined (OS_CHROMEOS) |
@@ -82,8 +83,9 @@ void FakeSigninManager::SignOut() { |
} |
// static |
-ProfileKeyedService* FakeSigninManager::Build(Profile* profile) { |
- return new FakeSigninManager(profile); |
+ProfileKeyedService* FakeSigninManager::Build( |
+ content::BrowserContext* profile) { |
+ return new FakeSigninManager(static_cast<Profile*>(profile)); |
} |
#endif // !defined (OS_CHROMEOS) |