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

Unified Diff: trunk/src/chrome/browser/chromeos/login/app_launch_signin_screen.cc

Issue 319633005: Revert 275492 "ChromeOS login webui refactoring : Simplify login..." (Closed) Base URL: svn://svn.chromium.org/chrome/
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
Index: trunk/src/chrome/browser/chromeos/login/app_launch_signin_screen.cc
===================================================================
--- trunk/src/chrome/browser/chromeos/login/app_launch_signin_screen.cc (revision 275547)
+++ trunk/src/chrome/browser/chromeos/login/app_launch_signin_screen.cc (working copy)
@@ -81,8 +81,7 @@
NOTREACHED();
}
-void AppLaunchSigninScreen::Login(const UserContext& user_context,
- const SigninSpecifics& specifics) {
+void AppLaunchSigninScreen::Login(const UserContext& user_context) {
// Note: LoginUtils::CreateAuthenticator doesn't necessarily create
// a new Authenticator object, and could reuse an existing one.
authenticator_ = LoginUtils::Get()->CreateAuthenticator(this);
@@ -93,10 +92,22 @@
user_context));
}
+void AppLaunchSigninScreen::LoginAsRetailModeUser() {
+ NOTREACHED();
+}
+
+void AppLaunchSigninScreen::LoginAsGuest() {
+ NOTREACHED();
+}
+
void AppLaunchSigninScreen::MigrateUserData(const std::string& old_password) {
NOTREACHED();
}
+void AppLaunchSigninScreen::LoginAsPublicAccount(const std::string& username) {
+ NOTREACHED();
+}
+
void AppLaunchSigninScreen::LoadWallpaper(const std::string& username) {
}
@@ -173,6 +184,11 @@
NOTREACHED();
}
+void AppLaunchSigninScreen::LoginAsKioskApp(const std::string& app_id,
+ bool diagnostic_mode) {
+ NOTREACHED();
+}
+
void AppLaunchSigninScreen::OnLoginFailure(const LoginFailure& error) {
LOG(ERROR) << "Unlock failure: " << error.reason();
webui_handler_->ClearAndEnablePassword();

Powered by Google App Engine
This is Rietveld 408576698