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(); |