| 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/login_utils.h" | 9 #include "chrome/browser/chromeos/login/login_utils.h" |
| 10 #include "chrome/browser/chromeos/login/screens/user_selection_screen.h" | 10 #include "chrome/browser/chromeos/login/screens/user_selection_screen.h" |
| 11 #include "chrome/browser/signin/screenlock_bridge.h" | 11 #include "chrome/browser/signin/screenlock_bridge.h" |
| 12 #include "chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h" | 12 #include "chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h" |
| 13 #include "chrome/grit/generated_resources.h" |
| 13 #include "content/public/browser/browser_thread.h" | 14 #include "content/public/browser/browser_thread.h" |
| 14 #include "content/public/browser/web_ui.h" | 15 #include "content/public/browser/web_ui.h" |
| 15 #include "grit/generated_resources.h" | |
| 16 #include "ui/base/l10n/l10n_util.h" | 16 #include "ui/base/l10n/l10n_util.h" |
| 17 | 17 |
| 18 namespace chromeos { | 18 namespace chromeos { |
| 19 | 19 |
| 20 UserManager* AppLaunchSigninScreen::test_user_manager_ = NULL; | 20 UserManager* AppLaunchSigninScreen::test_user_manager_ = NULL; |
| 21 | 21 |
| 22 AppLaunchSigninScreen::AppLaunchSigninScreen( | 22 AppLaunchSigninScreen::AppLaunchSigninScreen( |
| 23 OobeUI* oobe_ui, Delegate* delegate) | 23 OobeUI* oobe_ui, Delegate* delegate) |
| 24 : oobe_ui_(oobe_ui), | 24 : oobe_ui_(oobe_ui), |
| 25 delegate_(delegate), | 25 delegate_(delegate), |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 ScreenlockBridge::LockHandler::AuthType auth_type) { | 217 ScreenlockBridge::LockHandler::AuthType auth_type) { |
| 218 return; | 218 return; |
| 219 } | 219 } |
| 220 | 220 |
| 221 ScreenlockBridge::LockHandler::AuthType AppLaunchSigninScreen::GetAuthType( | 221 ScreenlockBridge::LockHandler::AuthType AppLaunchSigninScreen::GetAuthType( |
| 222 const std::string& username) const { | 222 const std::string& username) const { |
| 223 return ScreenlockBridge::LockHandler::OFFLINE_PASSWORD; | 223 return ScreenlockBridge::LockHandler::OFFLINE_PASSWORD; |
| 224 } | 224 } |
| 225 | 225 |
| 226 } // namespace chromeos | 226 } // namespace chromeos |
| OLD | NEW |