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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 virtual void AnimateAuthenticationSuccess() OVERRIDE; | 64 virtual void AnimateAuthenticationSuccess() OVERRIDE; |
65 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; | 65 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; |
66 virtual content::WebUI* GetAssociatedWebUI() OVERRIDE; | 66 virtual content::WebUI* GetAssociatedWebUI() OVERRIDE; |
67 virtual void OnLockWebUIReady() OVERRIDE; | 67 virtual void OnLockWebUIReady() OVERRIDE; |
68 virtual void OnLockBackgroundDisplayed() OVERRIDE; | 68 virtual void OnLockBackgroundDisplayed() OVERRIDE; |
69 | 69 |
70 // LoginDisplay::Delegate: implementation | 70 // LoginDisplay::Delegate: implementation |
71 virtual void CancelPasswordChangedFlow() OVERRIDE; | 71 virtual void CancelPasswordChangedFlow() OVERRIDE; |
72 virtual void CreateAccount() OVERRIDE; | 72 virtual void CreateAccount() OVERRIDE; |
73 virtual void CompleteLogin(const UserContext& user_context) OVERRIDE; | 73 virtual void CompleteLogin(const UserContext& user_context) OVERRIDE; |
74 virtual string16 GetConnectedNetworkName() OVERRIDE; | 74 virtual base::string16 GetConnectedNetworkName() OVERRIDE; |
75 virtual bool IsSigninInProgress() const OVERRIDE; | 75 virtual bool IsSigninInProgress() const OVERRIDE; |
76 virtual void Login(const UserContext& user_context) OVERRIDE; | 76 virtual void Login(const UserContext& user_context) OVERRIDE; |
77 virtual void LoginAsRetailModeUser() OVERRIDE; | 77 virtual void LoginAsRetailModeUser() OVERRIDE; |
78 virtual void LoginAsGuest() OVERRIDE; | 78 virtual void LoginAsGuest() OVERRIDE; |
79 virtual void MigrateUserData(const std::string& old_password) OVERRIDE; | 79 virtual void MigrateUserData(const std::string& old_password) OVERRIDE; |
80 virtual void LoginAsPublicAccount(const std::string& username) OVERRIDE; | 80 virtual void LoginAsPublicAccount(const std::string& username) OVERRIDE; |
81 virtual void OnSigninScreenReady() OVERRIDE; | 81 virtual void OnSigninScreenReady() OVERRIDE; |
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; |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 scoped_ptr<login::NetworkStateHelper> network_state_helper_; | 143 scoped_ptr<login::NetworkStateHelper> network_state_helper_; |
144 | 144 |
145 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; | 145 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; |
146 | 146 |
147 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); | 147 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); |
148 }; | 148 }; |
149 | 149 |
150 } // namespace chromeos | 150 } // namespace chromeos |
151 | 151 |
152 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ | 152 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ |
OLD | NEW |