| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 | 261 |
| 262 void UpdateStateInternal(ErrorScreenActor::ErrorReason reason, | 262 void UpdateStateInternal(ErrorScreenActor::ErrorReason reason, |
| 263 bool force_update); | 263 bool force_update); |
| 264 void SetupAndShowOfflineMessage(NetworkStateInformer::State state, | 264 void SetupAndShowOfflineMessage(NetworkStateInformer::State state, |
| 265 ErrorScreenActor::ErrorReason reason); | 265 ErrorScreenActor::ErrorReason reason); |
| 266 void HideOfflineMessage(NetworkStateInformer::State state, | 266 void HideOfflineMessage(NetworkStateInformer::State state, |
| 267 ErrorScreenActor::ErrorReason reason); | 267 ErrorScreenActor::ErrorReason reason); |
| 268 void ReloadGaia(bool force_reload); | 268 void ReloadGaia(bool force_reload); |
| 269 | 269 |
| 270 // BaseScreenHandler implementation: | 270 // BaseScreenHandler implementation: |
| 271 void DeclareLocalizedValues(LocalizedValuesBuilder* builder) override; | 271 void DeclareLocalizedValues( |
| 272 ::login::LocalizedValuesBuilder* builder) override; |
| 272 void Initialize() override; | 273 void Initialize() override; |
| 273 gfx::NativeWindow GetNativeWindow() override; | 274 gfx::NativeWindow GetNativeWindow() override; |
| 274 | 275 |
| 275 // WebUIMessageHandler implementation: | 276 // WebUIMessageHandler implementation: |
| 276 void RegisterMessages() override; | 277 void RegisterMessages() override; |
| 277 | 278 |
| 278 // LoginDisplayWebUIHandler implementation: | 279 // LoginDisplayWebUIHandler implementation: |
| 279 void ClearAndEnablePassword() override; | 280 void ClearAndEnablePassword() override; |
| 280 void ClearUserPodPassword() override; | 281 void ClearUserPodPassword() override; |
| 281 void OnUserRemoved(const std::string& username) override; | 282 void OnUserRemoved(const std::string& username) override; |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 scoped_ptr<ErrorScreensHistogramHelper> histogram_helper_; | 478 scoped_ptr<ErrorScreensHistogramHelper> histogram_helper_; |
| 478 | 479 |
| 479 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; | 480 base::WeakPtrFactory<SigninScreenHandler> weak_factory_; |
| 480 | 481 |
| 481 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); | 482 DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler); |
| 482 }; | 483 }; |
| 483 | 484 |
| 484 } // namespace chromeos | 485 } // namespace chromeos |
| 485 | 486 |
| 486 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ | 487 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_SIGNIN_SCREEN_HANDLER_H_ |
| OLD | NEW |