Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(566)

Unified Diff: chrome/browser/chromeos/login/fake_login_utils.cc

Issue 328383003: Revert of Introduce SessionManager that will contain code to start user session on Chrome OS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/login/fake_login_utils.h ('k') | chrome/browser/chromeos/login/login_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ad8d0453681a95ba4fee0592c88ad8f97541cccd..11a2dcf3c54e977ab5830f854ac39487d5d3c1d8 100644
--- a/chrome/browser/chromeos/login/fake_login_utils.cc
+++ b/chrome/browser/chromeos/login/fake_login_utils.cc
@@ -55,6 +55,7 @@
}
void FakeLoginUtils::PrepareProfile(const UserContext& user_context,
+ const std::string& display_email,
bool has_cookies,
bool has_active_session,
LoginUtils::Delegate* delegate) {
@@ -94,10 +95,22 @@
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) {
« no previous file with comments | « chrome/browser/chromeos/login/fake_login_utils.h ('k') | chrome/browser/chromeos/login/login_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698