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

Side by Side Diff: chrome/browser/chromeos/login/webui_login_display.h

Issue 12213110: Implemented screen notifying users about malformed HWID. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Merge conflicts resolved. 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 virtual void LoginAsRetailModeUser() OVERRIDE; 59 virtual void LoginAsRetailModeUser() OVERRIDE;
60 virtual void LoginAsGuest() OVERRIDE; 60 virtual void LoginAsGuest() OVERRIDE;
61 virtual void MigrateUserData(const std::string& old_password) OVERRIDE; 61 virtual void MigrateUserData(const std::string& old_password) OVERRIDE;
62 virtual void LoginAsPublicAccount(const std::string& username) OVERRIDE; 62 virtual void LoginAsPublicAccount(const std::string& username) OVERRIDE;
63 virtual void LoadWallpaper(const std::string& username) OVERRIDE; 63 virtual void LoadWallpaper(const std::string& username) OVERRIDE;
64 virtual void LoadSigninWallpaper() OVERRIDE; 64 virtual void LoadSigninWallpaper() OVERRIDE;
65 virtual void RemoveUser(const std::string& username) OVERRIDE; 65 virtual void RemoveUser(const std::string& username) OVERRIDE;
66 virtual void ResyncUserData() OVERRIDE; 66 virtual void ResyncUserData() OVERRIDE;
67 virtual void ShowEnterpriseEnrollmentScreen() OVERRIDE; 67 virtual void ShowEnterpriseEnrollmentScreen() OVERRIDE;
68 virtual void ShowResetScreen() OVERRIDE; 68 virtual void ShowResetScreen() OVERRIDE;
69 virtual void ShowWrongHWIDScreen() OVERRIDE;
69 virtual void SetWebUIHandler( 70 virtual void SetWebUIHandler(
70 LoginDisplayWebUIHandler* webui_handler) OVERRIDE; 71 LoginDisplayWebUIHandler* webui_handler) OVERRIDE;
71 virtual void ShowSigninScreenForCreds(const std::string& username, 72 virtual void ShowSigninScreenForCreds(const std::string& username,
72 const std::string& password); 73 const std::string& password);
73 virtual const UserList& GetUsers() const OVERRIDE; 74 virtual const UserList& GetUsers() const OVERRIDE;
74 virtual bool IsShowGuest() const OVERRIDE; 75 virtual bool IsShowGuest() const OVERRIDE;
75 virtual bool IsShowUsers() const OVERRIDE; 76 virtual bool IsShowUsers() const OVERRIDE;
76 virtual bool IsShowNewUser() const OVERRIDE; 77 virtual bool IsShowNewUser() const OVERRIDE;
77 virtual void SetDisplayEmail(const std::string& email) OVERRIDE; 78 virtual void SetDisplayEmail(const std::string& email) OVERRIDE;
78 virtual void Signout() OVERRIDE; 79 virtual void Signout() OVERRIDE;
(...skipping 13 matching lines...) Expand all
92 93
93 // Reference to the WebUI handling layer for the login screen 94 // Reference to the WebUI handling layer for the login screen
94 LoginDisplayWebUIHandler* webui_handler_; 95 LoginDisplayWebUIHandler* webui_handler_;
95 96
96 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay); 97 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplay);
97 }; 98 };
98 99
99 } // namespace chromeos 100 } // namespace chromeos
100 101
101 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_ 102 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698