| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/login/app_launch_signin_screen.h" | 5 #include "chrome/browser/chromeos/login/app_launch_signin_screen.h" |
| 6 | 6 |
| 7 #include "base/values.h" | 7 #include "base/values.h" |
| 8 #include "chrome/browser/chromeos/login/help_app_launcher.h" | 8 #include "chrome/browser/chromeos/login/help_app_launcher.h" |
| 9 #include "chrome/browser/chromeos/login/screens/user_selection_screen.h" | 9 #include "chrome/browser/chromeos/login/screens/user_selection_screen.h" |
| 10 #include "chrome/browser/chromeos/login/session/user_session_manager.h" | 10 #include "chrome/browser/chromeos/login/session/user_session_manager.h" |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 content::BrowserThread::UI, FROM_HERE, | 90 content::BrowserThread::UI, FROM_HERE, |
| 91 base::Bind(&Authenticator::AuthenticateToUnlock, | 91 base::Bind(&Authenticator::AuthenticateToUnlock, |
| 92 authenticator_.get(), | 92 authenticator_.get(), |
| 93 user_context)); | 93 user_context)); |
| 94 } | 94 } |
| 95 | 95 |
| 96 void AppLaunchSigninScreen::MigrateUserData(const std::string& old_password) { | 96 void AppLaunchSigninScreen::MigrateUserData(const std::string& old_password) { |
| 97 NOTREACHED(); | 97 NOTREACHED(); |
| 98 } | 98 } |
| 99 | 99 |
| 100 void AppLaunchSigninScreen::LoadWallpaper(const std::string& username) { | 100 void AppLaunchSigninScreen::LoadWallpaper(const AccountId& account_id) {} |
| 101 } | |
| 102 | 101 |
| 103 void AppLaunchSigninScreen::LoadSigninWallpaper() { | 102 void AppLaunchSigninScreen::LoadSigninWallpaper() { |
| 104 } | 103 } |
| 105 | 104 |
| 106 void AppLaunchSigninScreen::OnSigninScreenReady() { | 105 void AppLaunchSigninScreen::OnSigninScreenReady() { |
| 107 } | 106 } |
| 108 | 107 |
| 109 void AppLaunchSigninScreen::RemoveUser(const AccountId& account_id) { | 108 void AppLaunchSigninScreen::RemoveUser(const AccountId& account_id) { |
| 110 NOTREACHED(); | 109 NOTREACHED(); |
| 111 } | 110 } |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 } | 214 } |
| 216 | 215 |
| 217 void AppLaunchSigninScreen::CheckUserStatus(const AccountId& account_id) {} | 216 void AppLaunchSigninScreen::CheckUserStatus(const AccountId& account_id) {} |
| 218 | 217 |
| 219 bool AppLaunchSigninScreen::IsUserWhitelisted(const std::string& user_id) { | 218 bool AppLaunchSigninScreen::IsUserWhitelisted(const std::string& user_id) { |
| 220 NOTREACHED(); | 219 NOTREACHED(); |
| 221 return true; | 220 return true; |
| 222 } | 221 } |
| 223 | 222 |
| 224 } // namespace chromeos | 223 } // namespace chromeos |
| OLD | NEW |