Index: chrome/browser/chromeos/login/fake_login_utils.cc |
diff --git a/chrome/browser/chromeos/login/fake_login_utils.cc b/chrome/browser/chromeos/login/fake_login_utils.cc |
index 8cc12ac08e020475096a67dc03f9223c5cce7828..ffb8cffe19f6655aad75a3005d4e4f426c4cd79f 100644 |
--- a/chrome/browser/chromeos/login/fake_login_utils.cc |
+++ b/chrome/browser/chromeos/login/fake_login_utils.cc |
@@ -55,7 +55,6 @@ void FakeLoginUtils::DoBrowserLaunch(Profile* profile, |
} |
void FakeLoginUtils::PrepareProfile(const UserContext& user_context, |
- const std::string& display_email, |
bool has_cookies, |
bool has_active_session, |
LoginUtils::Delegate* delegate) { |
@@ -95,24 +94,12 @@ void FakeLoginUtils::CompleteOffTheRecordLogin(const GURL& start_url) { |
NOTREACHED() << "Method not implemented."; |
} |
-void FakeLoginUtils::SetFirstLoginPrefs(PrefService* prefs) { |
- NOTREACHED() << "Method not implemented."; |
-} |
- |
scoped_refptr<Authenticator> FakeLoginUtils::CreateAuthenticator( |
LoginStatusConsumer* consumer) { |
authenticator_ = new MockAuthenticator(consumer, expected_user_context_); |
return authenticator_; |
} |
-void FakeLoginUtils::RestoreAuthenticationSession(Profile* profile) { |
- NOTREACHED() << "Method not implemented."; |
-} |
- |
-void FakeLoginUtils::InitRlzDelayed(Profile* user_profile) { |
- NOTREACHED() << "Method not implemented."; |
-} |
- |
void FakeLoginUtils::SetExpectedCredentials(const UserContext& user_context) { |
expected_user_context_ = user_context; |
if (authenticator_) { |