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

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

Issue 656283002: [session_manager] Move user session initialization code out of ExistingUserController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update FakeLoginUtils to launch browser Created 6 years, 2 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
Index: chrome/browser/chromeos/login/user_flow.cc
diff --git a/chrome/browser/chromeos/login/user_flow.cc b/chrome/browser/chromeos/login/user_flow.cc
index ffec4623486562cf32ff53a1deb51748e09a8c78..289522f3764cf66697d5bbdd731e8cbba5b2916b 100644
--- a/chrome/browser/chromeos/login/user_flow.cc
+++ b/chrome/browser/chromeos/login/user_flow.cc
@@ -24,6 +24,9 @@ UserFlow::~UserFlow() {}
DefaultUserFlow::~DefaultUserFlow() {}
+void DefaultUserFlow::AppendAdditionalCommandLineSwitches() {
+}
+
bool DefaultUserFlow::CanLockScreen() {
return true;
}
@@ -68,10 +71,17 @@ ExtendedUserFlow::ExtendedUserFlow(const std::string& user_id)
ExtendedUserFlow::~ExtendedUserFlow() {
}
+void ExtendedUserFlow::AppendAdditionalCommandLineSwitches() {
+}
+
bool ExtendedUserFlow::ShouldShowSettings() {
return true;
}
+void ExtendedUserFlow::HandleOAuthTokenStatusChange(
+ user_manager::User::OAuthTokenStatus status) {
+}
+
void ExtendedUserFlow::UnregisterFlowSoon() {
std::string id_copy(user_id());
base::MessageLoop::current()->PostTask(FROM_HERE,

Powered by Google App Engine
This is Rietveld 408576698