OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/lock/webui_screen_locker.h" | 5 #include "chrome/browser/chromeos/login/lock/webui_screen_locker.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/metrics/histogram.h" | 8 #include "base/metrics/histogram.h" |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "base/values.h" | 10 #include "base/values.h" |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 NOTREACHED(); | 259 NOTREACHED(); |
260 } | 260 } |
261 | 261 |
262 void WebUIScreenLocker::OnSigninScreenReady() { | 262 void WebUIScreenLocker::OnSigninScreenReady() { |
263 } | 263 } |
264 | 264 |
265 void WebUIScreenLocker::OnStartEnterpriseEnrollment() { | 265 void WebUIScreenLocker::OnStartEnterpriseEnrollment() { |
266 NOTREACHED(); | 266 NOTREACHED(); |
267 } | 267 } |
268 | 268 |
| 269 void WebUIScreenLocker::OnStartEnableDebuggingScreen() { |
| 270 NOTREACHED(); |
| 271 } |
| 272 |
269 void WebUIScreenLocker::OnStartKioskEnableScreen() { | 273 void WebUIScreenLocker::OnStartKioskEnableScreen() { |
270 NOTREACHED(); | 274 NOTREACHED(); |
271 } | 275 } |
272 | 276 |
273 void WebUIScreenLocker::OnStartKioskAutolaunchScreen() { | 277 void WebUIScreenLocker::OnStartKioskAutolaunchScreen() { |
274 NOTREACHED(); | 278 NOTREACHED(); |
275 } | 279 } |
276 | 280 |
277 void WebUIScreenLocker::ShowWrongHWIDScreen() { | 281 void WebUIScreenLocker::ShowWrongHWIDScreen() { |
278 NOTREACHED(); | 282 NOTREACHED(); |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 GetOobeUI()->GetCoreOobeActor()->ShowControlBar(false); | 393 GetOobeUI()->GetCoreOobeActor()->ShowControlBar(false); |
390 if (login::LoginScrollIntoViewEnabled()) | 394 if (login::LoginScrollIntoViewEnabled()) |
391 GetOobeUI()->GetCoreOobeActor()->SetKeyboardState(true, new_bounds); | 395 GetOobeUI()->GetCoreOobeActor()->SetKeyboardState(true, new_bounds); |
392 } | 396 } |
393 } | 397 } |
394 | 398 |
395 keyboard_bounds_ = new_bounds; | 399 keyboard_bounds_ = new_bounds; |
396 } | 400 } |
397 | 401 |
398 } // namespace chromeos | 402 } // namespace chromeos |
OLD | NEW |