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

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: Update names and comments. 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();
250 } 254 }
251 255
252 void WebUIScreenLocker::OnStartKioskAutolaunchScreen() { 256 void WebUIScreenLocker::OnStartKioskAutolaunchScreen() {
253 NOTREACHED(); 257 NOTREACHED();
254 } 258 }
255 259
256 void WebUIScreenLocker::ShowWrongHWIDScreen() { 260 void WebUIScreenLocker::ShowWrongHWIDScreen() {
257 NOTREACHED(); 261 NOTREACHED();
258 } 262 }
259 263
260 void WebUIScreenLocker::ResetPublicSessionAutoLoginTimer() { 264 void WebUIScreenLocker::ResetAutoLoginTimer() {}
261 }
262 265
263 void WebUIScreenLocker::ResyncUserData() { 266 void WebUIScreenLocker::ResyncUserData() {
264 NOTREACHED(); 267 NOTREACHED();
265 } 268 }
266 269
267 void WebUIScreenLocker::SetDisplayEmail(const std::string& email) { 270 void WebUIScreenLocker::SetDisplayEmail(const std::string& email) {
268 NOTREACHED(); 271 NOTREACHED();
269 } 272 }
270 273
271 void WebUIScreenLocker::Signout() { 274 void WebUIScreenLocker::Signout() {
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 } 393 }
391 394
392 if (GetOobeUI()) { 395 if (GetOobeUI()) {
393 const gfx::Size& size = primary_display.size(); 396 const gfx::Size& size = primary_display.size();
394 GetOobeUI()->GetCoreOobeActor()->SetClientAreaSize(size.width(), 397 GetOobeUI()->GetCoreOobeActor()->SetClientAreaSize(size.width(),
395 size.height()); 398 size.height());
396 } 399 }
397 } 400 }
398 401
399 } // namespace chromeos 402 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698