| 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 "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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |