| Index: trunk/src/chrome/browser/chromeos/login/lock/webui_screen_locker.cc
|
| ===================================================================
|
| --- trunk/src/chrome/browser/chromeos/login/lock/webui_screen_locker.cc (revision 275547)
|
| +++ trunk/src/chrome/browser/chromeos/login/lock/webui_screen_locker.cc (working copy)
|
| @@ -243,18 +243,32 @@
|
| return false;
|
| }
|
|
|
| -void WebUIScreenLocker::Login(const UserContext& user_context,
|
| - const SigninSpecifics& specifics) {
|
| +void WebUIScreenLocker::Login(const UserContext& user_context) {
|
| chromeos::ScreenLocker::default_screen_locker()->Authenticate(user_context);
|
| }
|
|
|
| +void WebUIScreenLocker::LoginAsRetailModeUser() {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +void WebUIScreenLocker::LoginAsGuest() {
|
| + NOTREACHED();
|
| +}
|
| +
|
| void WebUIScreenLocker::MigrateUserData(const std::string& old_password) {
|
| NOTREACHED();
|
| }
|
|
|
| +void WebUIScreenLocker::LoginAsPublicAccount(const std::string& username) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| void WebUIScreenLocker::OnSigninScreenReady() {
|
| }
|
|
|
| +void WebUIScreenLocker::OnUserSelected(const std::string& username) {
|
| +}
|
| +
|
| void WebUIScreenLocker::OnStartEnterpriseEnrollment() {
|
| NOTREACHED();
|
| }
|
| @@ -286,6 +300,11 @@
|
| chromeos::ScreenLocker::default_screen_locker()->Signout();
|
| }
|
|
|
| +void WebUIScreenLocker::LoginAsKioskApp(const std::string& app_id,
|
| + bool diagnostic_mode) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // LockWindow::Observer implementation:
|
|
|
|
|