| OLD | NEW |
| 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_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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ash/wm/session_state_observer.h" | 10 #include "ash/wm/session_state_observer.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 virtual string16 GetConnectedNetworkName() OVERRIDE; | 71 virtual string16 GetConnectedNetworkName() OVERRIDE; |
| 72 virtual void Login(const std::string& username, | 72 virtual void Login(const std::string& username, |
| 73 const std::string& password) OVERRIDE; | 73 const std::string& password) OVERRIDE; |
| 74 virtual void LoginAsRetailModeUser() OVERRIDE; | 74 virtual void LoginAsRetailModeUser() OVERRIDE; |
| 75 virtual void LoginAsGuest() OVERRIDE; | 75 virtual void LoginAsGuest() OVERRIDE; |
| 76 virtual void MigrateUserData(const std::string& old_password) OVERRIDE; | 76 virtual void MigrateUserData(const std::string& old_password) OVERRIDE; |
| 77 virtual void LoginAsPublicAccount(const std::string& username) OVERRIDE; | 77 virtual void LoginAsPublicAccount(const std::string& username) OVERRIDE; |
| 78 virtual void OnUserSelected(const std::string& username) OVERRIDE; | 78 virtual void OnUserSelected(const std::string& username) OVERRIDE; |
| 79 virtual void OnStartEnterpriseEnrollment() OVERRIDE; | 79 virtual void OnStartEnterpriseEnrollment() OVERRIDE; |
| 80 virtual void OnStartDeviceReset() OVERRIDE; | 80 virtual void OnStartDeviceReset() OVERRIDE; |
| 81 virtual void ShowWrongHWIDScreen() OVERRIDE; |
| 81 virtual void ResyncUserData() OVERRIDE; | 82 virtual void ResyncUserData() OVERRIDE; |
| 82 virtual void SetDisplayEmail(const std::string& email) OVERRIDE; | 83 virtual void SetDisplayEmail(const std::string& email) OVERRIDE; |
| 83 virtual void Signout() OVERRIDE; | 84 virtual void Signout() OVERRIDE; |
| 84 | 85 |
| 85 // content::NotificationObserver (via WebUILoginView) implementation. | 86 // content::NotificationObserver (via WebUILoginView) implementation. |
| 86 virtual void Observe(int type, | 87 virtual void Observe(int type, |
| 87 const content::NotificationSource& source, | 88 const content::NotificationSource& source, |
| 88 const content::NotificationDetails& details) OVERRIDE; | 89 const content::NotificationDetails& details) OVERRIDE; |
| 89 | 90 |
| 90 // LockWindow::Observer implementation. | 91 // LockWindow::Observer implementation. |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 base::TimeTicks lock_time_; | 130 base::TimeTicks lock_time_; |
| 130 | 131 |
| 131 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; | 132 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; |
| 132 | 133 |
| 133 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); | 134 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); |
| 134 }; | 135 }; |
| 135 | 136 |
| 136 } // namespace chromeos | 137 } // namespace chromeos |
| 137 | 138 |
| 138 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ | 139 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ |
| OLD | NEW |