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/lock_state_observer.h" | 10 #include "ash/wm/lock_state_observer.h" |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 virtual void OnUserSelected(const std::string& username) OVERRIDE; | 82 virtual void OnUserSelected(const std::string& username) OVERRIDE; |
83 virtual void OnStartEnterpriseEnrollment() OVERRIDE; | 83 virtual void OnStartEnterpriseEnrollment() OVERRIDE; |
84 virtual void OnStartKioskEnableScreen() OVERRIDE; | 84 virtual void OnStartKioskEnableScreen() OVERRIDE; |
85 virtual void OnStartDeviceReset() OVERRIDE; | 85 virtual void OnStartDeviceReset() OVERRIDE; |
86 virtual void OnStartKioskAutolaunchScreen() OVERRIDE; | 86 virtual void OnStartKioskAutolaunchScreen() OVERRIDE; |
87 virtual void ShowWrongHWIDScreen() OVERRIDE; | 87 virtual void ShowWrongHWIDScreen() OVERRIDE; |
88 virtual void ResetPublicSessionAutoLoginTimer() OVERRIDE; | 88 virtual void ResetPublicSessionAutoLoginTimer() OVERRIDE; |
89 virtual void ResyncUserData() OVERRIDE; | 89 virtual void ResyncUserData() OVERRIDE; |
90 virtual void SetDisplayEmail(const std::string& email) OVERRIDE; | 90 virtual void SetDisplayEmail(const std::string& email) OVERRIDE; |
91 virtual void Signout() OVERRIDE; | 91 virtual void Signout() OVERRIDE; |
| 92 virtual void LoginAsKioskApp(const std::string& app_id) OVERRIDE; |
92 | 93 |
93 // content::NotificationObserver (via WebUILoginView) implementation. | 94 // content::NotificationObserver (via WebUILoginView) implementation. |
94 virtual void Observe(int type, | 95 virtual void Observe(int type, |
95 const content::NotificationSource& source, | 96 const content::NotificationSource& source, |
96 const content::NotificationDetails& details) OVERRIDE; | 97 const content::NotificationDetails& details) OVERRIDE; |
97 | 98 |
98 // LockWindow::Observer implementation. | 99 // LockWindow::Observer implementation. |
99 virtual void OnLockWindowReady() OVERRIDE; | 100 virtual void OnLockWindowReady() OVERRIDE; |
100 | 101 |
101 // LockStateObserver override. | 102 // LockStateObserver override. |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 scoped_ptr<login::NetworkStateHelper> network_state_helper_; | 143 scoped_ptr<login::NetworkStateHelper> network_state_helper_; |
143 | 144 |
144 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; | 145 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; |
145 | 146 |
146 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); | 147 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); |
147 }; | 148 }; |
148 | 149 |
149 } // namespace chromeos | 150 } // namespace chromeos |
150 | 151 |
151 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ | 152 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ |
OLD | NEW |