Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Side by Side Diff: chrome/browser/chromeos/login/lock/webui_screen_locker.cc

Issue 539273002: Added UI to enable debugging features on CrOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "ash/shell.h" 7 #include "ash/shell.h"
8 #include "ash/wm/lock_state_controller.h" 8 #include "ash/wm/lock_state_controller.h"
9 #include "ash/wm/lock_state_observer.h" 9 #include "ash/wm/lock_state_observer.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 NOTREACHED(); 256 NOTREACHED();
257 } 257 }
258 258
259 void WebUIScreenLocker::OnSigninScreenReady() { 259 void WebUIScreenLocker::OnSigninScreenReady() {
260 } 260 }
261 261
262 void WebUIScreenLocker::OnStartEnterpriseEnrollment() { 262 void WebUIScreenLocker::OnStartEnterpriseEnrollment() {
263 NOTREACHED(); 263 NOTREACHED();
264 } 264 }
265 265
266 void WebUIScreenLocker::OnStartEnableDebuggingScreen() {
267 NOTREACHED();
268 }
269
266 void WebUIScreenLocker::OnStartKioskEnableScreen() { 270 void WebUIScreenLocker::OnStartKioskEnableScreen() {
267 NOTREACHED(); 271 NOTREACHED();
268 } 272 }
269 273
270 void WebUIScreenLocker::OnStartKioskAutolaunchScreen() { 274 void WebUIScreenLocker::OnStartKioskAutolaunchScreen() {
271 NOTREACHED(); 275 NOTREACHED();
272 } 276 }
273 277
274 void WebUIScreenLocker::ShowWrongHWIDScreen() { 278 void WebUIScreenLocker::ShowWrongHWIDScreen() {
275 NOTREACHED(); 279 NOTREACHED();
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 GetOobeUI()->GetCoreOobeActor()->ShowControlBar(false); 386 GetOobeUI()->GetCoreOobeActor()->ShowControlBar(false);
383 if (login::LoginScrollIntoViewEnabled()) 387 if (login::LoginScrollIntoViewEnabled())
384 GetOobeUI()->GetCoreOobeActor()->SetKeyboardState(true, new_bounds); 388 GetOobeUI()->GetCoreOobeActor()->SetKeyboardState(true, new_bounds);
385 } 389 }
386 } 390 }
387 391
388 keyboard_bounds_ = new_bounds; 392 keyboard_bounds_ = new_bounds;
389 } 393 }
390 394
391 } // namespace chromeos 395 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698