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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 } | 229 } |
230 | 230 |
231 void WebUIScreenLocker::MigrateUserData(const std::string& old_password) { | 231 void WebUIScreenLocker::MigrateUserData(const std::string& old_password) { |
232 NOTREACHED(); | 232 NOTREACHED(); |
233 } | 233 } |
234 | 234 |
235 void WebUIScreenLocker::OnSigninScreenReady() { | 235 void WebUIScreenLocker::OnSigninScreenReady() { |
236 VLOG(2) << "Lock screen signin screen is ready"; | 236 VLOG(2) << "Lock screen signin screen is ready"; |
237 } | 237 } |
238 | 238 |
| 239 void WebUIScreenLocker::OnGaiaScreenReady() { |
| 240 VLOG(2) << "Lock screen gaia screen is ready"; |
| 241 } |
| 242 |
239 void WebUIScreenLocker::OnStartEnterpriseEnrollment() { | 243 void WebUIScreenLocker::OnStartEnterpriseEnrollment() { |
240 NOTREACHED(); | 244 NOTREACHED(); |
241 } | 245 } |
242 | 246 |
243 void WebUIScreenLocker::OnStartEnableDebuggingScreen() { | 247 void WebUIScreenLocker::OnStartEnableDebuggingScreen() { |
244 NOTREACHED(); | 248 NOTREACHED(); |
245 } | 249 } |
246 | 250 |
247 void WebUIScreenLocker::OnStartKioskEnableScreen() { | 251 void WebUIScreenLocker::OnStartKioskEnableScreen() { |
248 NOTREACHED(); | 252 NOTREACHED(); |
249 } | 253 } |
250 | 254 |
251 void WebUIScreenLocker::OnStartKioskAutolaunchScreen() { | 255 void WebUIScreenLocker::OnStartKioskAutolaunchScreen() { |
252 NOTREACHED(); | 256 NOTREACHED(); |
253 } | 257 } |
254 | 258 |
255 void WebUIScreenLocker::ShowWrongHWIDScreen() { | 259 void WebUIScreenLocker::ShowWrongHWIDScreen() { |
256 NOTREACHED(); | 260 NOTREACHED(); |
257 } | 261 } |
258 | 262 |
259 void WebUIScreenLocker::ResetPublicSessionAutoLoginTimer() { | 263 void WebUIScreenLocker::ResetAutoLoginTimer() {} |
260 } | |
261 | 264 |
262 void WebUIScreenLocker::ResyncUserData() { | 265 void WebUIScreenLocker::ResyncUserData() { |
263 NOTREACHED(); | 266 NOTREACHED(); |
264 } | 267 } |
265 | 268 |
266 void WebUIScreenLocker::SetDisplayEmail(const std::string& email) { | 269 void WebUIScreenLocker::SetDisplayEmail(const std::string& email) { |
267 NOTREACHED(); | 270 NOTREACHED(); |
268 } | 271 } |
269 | 272 |
270 void WebUIScreenLocker::Signout() { | 273 void WebUIScreenLocker::Signout() { |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 } | 392 } |
390 | 393 |
391 if (GetOobeUI()) { | 394 if (GetOobeUI()) { |
392 const gfx::Size& size = primary_display.size(); | 395 const gfx::Size& size = primary_display.size(); |
393 GetOobeUI()->GetCoreOobeActor()->SetClientAreaSize(size.width(), | 396 GetOobeUI()->GetCoreOobeActor()->SetClientAreaSize(size.width(), |
394 size.height()); | 397 size.height()); |
395 } | 398 } |
396 } | 399 } |
397 | 400 |
398 } // namespace chromeos | 401 } // namespace chromeos |
OLD | NEW |