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" |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 } | 113 } |
114 | 114 |
115 void AppLaunchSigninScreen::ResyncUserData() { | 115 void AppLaunchSigninScreen::ResyncUserData() { |
116 NOTREACHED(); | 116 NOTREACHED(); |
117 } | 117 } |
118 | 118 |
119 void AppLaunchSigninScreen::ShowEnterpriseEnrollmentScreen() { | 119 void AppLaunchSigninScreen::ShowEnterpriseEnrollmentScreen() { |
120 NOTREACHED(); | 120 NOTREACHED(); |
121 } | 121 } |
122 | 122 |
| 123 void AppLaunchSigninScreen::ShowEnableDebuggingScreen() { |
| 124 NOTREACHED(); |
| 125 } |
| 126 |
123 void AppLaunchSigninScreen::ShowKioskEnableScreen() { | 127 void AppLaunchSigninScreen::ShowKioskEnableScreen() { |
124 NOTREACHED(); | 128 NOTREACHED(); |
125 } | 129 } |
126 | 130 |
127 void AppLaunchSigninScreen::ShowKioskAutolaunchScreen() { | 131 void AppLaunchSigninScreen::ShowKioskAutolaunchScreen() { |
128 NOTREACHED(); | 132 NOTREACHED(); |
129 } | 133 } |
130 | 134 |
131 void AppLaunchSigninScreen::ShowWrongHWIDScreen() { | 135 void AppLaunchSigninScreen::ShowWrongHWIDScreen() { |
132 NOTREACHED(); | 136 NOTREACHED(); |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 ScreenlockBridge::LockHandler::AuthType auth_type) { | 223 ScreenlockBridge::LockHandler::AuthType auth_type) { |
220 return; | 224 return; |
221 } | 225 } |
222 | 226 |
223 ScreenlockBridge::LockHandler::AuthType AppLaunchSigninScreen::GetAuthType( | 227 ScreenlockBridge::LockHandler::AuthType AppLaunchSigninScreen::GetAuthType( |
224 const std::string& username) const { | 228 const std::string& username) const { |
225 return ScreenlockBridge::LockHandler::OFFLINE_PASSWORD; | 229 return ScreenlockBridge::LockHandler::OFFLINE_PASSWORD; |
226 } | 230 } |
227 | 231 |
228 } // namespace chromeos | 232 } // namespace chromeos |
OLD | NEW |