OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_SCREEN_LOCKER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 virtual void ShowErrorMessage(const string16& message, | 47 virtual void ShowErrorMessage(const string16& message, |
48 bool sign_out_only) OVERRIDE; | 48 bool sign_out_only) OVERRIDE; |
49 virtual void ShowCaptchaAndErrorMessage(const GURL& captcha_url, | 49 virtual void ShowCaptchaAndErrorMessage(const GURL& captcha_url, |
50 const string16& message) OVERRIDE; | 50 const string16& message) OVERRIDE; |
51 virtual void ClearErrors() OVERRIDE; | 51 virtual void ClearErrors() OVERRIDE; |
52 | 52 |
53 // LoginDisplay::Delegate: implementation | 53 // LoginDisplay::Delegate: implementation |
54 virtual void CreateAccount() OVERRIDE; | 54 virtual void CreateAccount() OVERRIDE; |
55 virtual string16 GetConnectedNetworkName() OVERRIDE; | 55 virtual string16 GetConnectedNetworkName() OVERRIDE; |
56 virtual void FixCaptivePortal() OVERRIDE; | 56 virtual void FixCaptivePortal() OVERRIDE; |
| 57 virtual void SetDisplayEmail(const std::string& email) OVERRIDE; |
57 virtual void CompleteLogin(const std::string& username, | 58 virtual void CompleteLogin(const std::string& username, |
58 const std::string& password) OVERRIDE; | 59 const std::string& password) OVERRIDE; |
59 virtual void Login(const std::string& username, | 60 virtual void Login(const std::string& username, |
60 const std::string& password) OVERRIDE; | 61 const std::string& password) OVERRIDE; |
61 virtual void LoginAsGuest() OVERRIDE; | 62 virtual void LoginAsGuest() OVERRIDE; |
62 virtual void OnUserSelected(const std::string& username) OVERRIDE; | 63 virtual void OnUserSelected(const std::string& username) OVERRIDE; |
63 virtual void OnStartEnterpriseEnrollment() OVERRIDE; | 64 virtual void OnStartEnterpriseEnrollment() OVERRIDE; |
64 | 65 |
65 // content::NotificationObserver implementation. | 66 // content::NotificationObserver implementation. |
66 virtual void Observe(int type, | 67 virtual void Observe(int type, |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 // Status of keyboard and mouse grab. | 115 // Status of keyboard and mouse grab. |
115 GdkGrabStatus kbd_grab_status_; | 116 GdkGrabStatus kbd_grab_status_; |
116 GdkGrabStatus mouse_grab_status_; | 117 GdkGrabStatus mouse_grab_status_; |
117 | 118 |
118 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); | 119 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); |
119 }; | 120 }; |
120 | 121 |
121 } // namespace chromeos | 122 } // namespace chromeos |
122 | 123 |
123 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ | 124 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ |
OLD | NEW |