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

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

Issue 2510203002: Implement auto-login for ARC kiosk. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kiosk_session
Patch Set: Report GaiaScreenReady() from GaiaScreenHandler to ExistingUserController. Created 4 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/common/wm_shell.h" 7 #include "ash/common/wm_shell.h"
8 #include "ash/shell.h" 8 #include "ash/shell.h"
9 #include "ash/system/chromeos/power/power_event_observer.h" 9 #include "ash/system/chromeos/power/power_event_observer.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 } 230 }
231 231
232 void WebUIScreenLocker::MigrateUserData(const std::string& old_password) { 232 void WebUIScreenLocker::MigrateUserData(const std::string& old_password) {
233 NOTREACHED(); 233 NOTREACHED();
234 } 234 }
235 235
236 void WebUIScreenLocker::OnSigninScreenReady() { 236 void WebUIScreenLocker::OnSigninScreenReady() {
237 VLOG(2) << "Lock screen signin screen is ready"; 237 VLOG(2) << "Lock screen signin screen is ready";
238 } 238 }
239 239
240 void WebUIScreenLocker::OnGaiaScreenReady() {
241 VLOG(2) << "Lock screen gaia screen is ready";
242 }
243
240 void WebUIScreenLocker::OnStartEnterpriseEnrollment() { 244 void WebUIScreenLocker::OnStartEnterpriseEnrollment() {
241 NOTREACHED(); 245 NOTREACHED();
242 } 246 }
243 247
244 void WebUIScreenLocker::OnStartEnableDebuggingScreen() { 248 void WebUIScreenLocker::OnStartEnableDebuggingScreen() {
245 NOTREACHED(); 249 NOTREACHED();
246 } 250 }
247 251
248 void WebUIScreenLocker::OnStartKioskEnableScreen() { 252 void WebUIScreenLocker::OnStartKioskEnableScreen() {
249 NOTREACHED(); 253 NOTREACHED();
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 } 394 }
391 395
392 if (GetOobeUI()) { 396 if (GetOobeUI()) {
393 const gfx::Size& size = primary_display.size(); 397 const gfx::Size& size = primary_display.size();
394 GetOobeUI()->GetCoreOobeActor()->SetClientAreaSize(size.width(), 398 GetOobeUI()->GetCoreOobeActor()->SetClientAreaSize(size.width(),
395 size.height()); 399 size.height());
396 } 400 }
397 } 401 }
398 402
399 } // namespace chromeos 403 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698