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

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

Issue 12213110: Implemented screen notifying users about malformed HWID. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Implemented wizard controller test. Created 7 years, 10 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/webui_screen_locker.h" 5 #include "chrome/browser/chromeos/login/webui_screen_locker.h"
6 6
7 #include "ash/shell.h" 7 #include "ash/shell.h"
8 #include "ash/wm/session_state_controller.h" 8 #include "ash/wm/session_state_controller.h"
9 #include "ash/wm/session_state_observer.h" 9 #include "ash/wm/session_state_observer.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 } 231 }
232 232
233 void WebUIScreenLocker::OnStartEnterpriseEnrollment() { 233 void WebUIScreenLocker::OnStartEnterpriseEnrollment() {
234 NOTREACHED(); 234 NOTREACHED();
235 } 235 }
236 236
237 void WebUIScreenLocker::OnStartDeviceReset() { 237 void WebUIScreenLocker::OnStartDeviceReset() {
238 NOTREACHED(); 238 NOTREACHED();
239 } 239 }
240 240
241 void WebUIScreenLocker::ShowWrongHWIDScreen() {
242 NOTREACHED();
243 }
244
241 void WebUIScreenLocker::ResyncUserData() { 245 void WebUIScreenLocker::ResyncUserData() {
242 NOTREACHED(); 246 NOTREACHED();
243 } 247 }
244 248
245 void WebUIScreenLocker::SetDisplayEmail(const std::string& email) { 249 void WebUIScreenLocker::SetDisplayEmail(const std::string& email) {
246 NOTREACHED(); 250 NOTREACHED();
247 } 251 }
248 252
249 void WebUIScreenLocker::Signout() { 253 void WebUIScreenLocker::Signout() {
250 chromeos::ScreenLocker::default_screen_locker()->Signout(); 254 chromeos::ScreenLocker::default_screen_locker()->Signout();
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 } 293 }
290 294
291 void WebUIScreenLocker::SystemResumed(const base::TimeDelta& sleep_duration) { 295 void WebUIScreenLocker::SystemResumed(const base::TimeDelta& sleep_duration) {
292 content::BrowserThread::PostTask( 296 content::BrowserThread::PostTask(
293 content::BrowserThread::UI, 297 content::BrowserThread::UI,
294 FROM_HERE, 298 FROM_HERE,
295 base::Bind(&WebUIScreenLocker::FocusUserPod, weak_factory_.GetWeakPtr())); 299 base::Bind(&WebUIScreenLocker::FocusUserPod, weak_factory_.GetWeakPtr()));
296 } 300 }
297 301
298 } // namespace chromeos 302 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/webui_screen_locker.h ('k') | chrome/browser/chromeos/login/wizard_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698