| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_APP_LAUNCH_SPLASH_SCREEN_HANDLER_
H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_APP_LAUNCH_SPLASH_SCREEN_HANDLER_
H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_APP_LAUNCH_SPLASH_SCREEN_HANDLER_
H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_APP_LAUNCH_SPLASH_SCREEN_HANDLER_
H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 // BaseScreenHandler implementation: | 30 // BaseScreenHandler implementation: |
| 31 void DeclareLocalizedValues( | 31 void DeclareLocalizedValues( |
| 32 ::login::LocalizedValuesBuilder* builder) override; | 32 ::login::LocalizedValuesBuilder* builder) override; |
| 33 void Initialize() override; | 33 void Initialize() override; |
| 34 | 34 |
| 35 // WebUIMessageHandler implementation: | 35 // WebUIMessageHandler implementation: |
| 36 void RegisterMessages() override; | 36 void RegisterMessages() override; |
| 37 | 37 |
| 38 // AppLaunchSplashScreenActor implementation: | 38 // AppLaunchSplashScreenActor implementation: |
| 39 void Show(const std::string& app_id) override; | 39 void Show(const std::string& app_id) override; |
| 40 void PrepareToShow() override; | |
| 41 void Hide() override; | 40 void Hide() override; |
| 42 void ToggleNetworkConfig(bool visible) override; | 41 void ToggleNetworkConfig(bool visible) override; |
| 43 void UpdateAppLaunchState(AppLaunchState state) override; | 42 void UpdateAppLaunchState(AppLaunchState state) override; |
| 44 void SetDelegate(AppLaunchSplashScreenHandler::Delegate* delegate) override; | 43 void SetDelegate(AppLaunchSplashScreenHandler::Delegate* delegate) override; |
| 45 void ShowNetworkConfigureUI() override; | 44 void ShowNetworkConfigureUI() override; |
| 46 bool IsNetworkReady() override; | 45 bool IsNetworkReady() override; |
| 47 | 46 |
| 48 // NetworkStateInformer::NetworkStateInformerObserver implementation: | 47 // NetworkStateInformer::NetworkStateInformerObserver implementation: |
| 49 void OnNetworkReady() override; | 48 void OnNetworkReady() override; |
| 50 void UpdateState(NetworkError::ErrorReason reason) override; | 49 void UpdateState(NetworkError::ErrorReason reason) override; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 74 | 73 |
| 75 // True if we have manually requested network config screen. | 74 // True if we have manually requested network config screen. |
| 76 bool network_config_requested_; | 75 bool network_config_requested_; |
| 77 | 76 |
| 78 DISALLOW_COPY_AND_ASSIGN(AppLaunchSplashScreenHandler); | 77 DISALLOW_COPY_AND_ASSIGN(AppLaunchSplashScreenHandler); |
| 79 }; | 78 }; |
| 80 | 79 |
| 81 } // namespace chromeos | 80 } // namespace chromeos |
| 82 | 81 |
| 83 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_APP_LAUNCH_SPLASH_SCREEN_HANDL
ER_H_ | 82 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_APP_LAUNCH_SPLASH_SCREEN_HANDL
ER_H_ |
| OLD | NEW |