| 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_CHROMEOS_LOGIN_APP_LAUNCH_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_CONTROLLER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 94 |
| 95 // AppLaunchSplashScreenActor::Delegate overrides: | 95 // AppLaunchSplashScreenActor::Delegate overrides: |
| 96 void OnConfigureNetwork() override; | 96 void OnConfigureNetwork() override; |
| 97 void OnCancelAppLaunch() override; | 97 void OnCancelAppLaunch() override; |
| 98 void OnNetworkConfigRequested(bool requested) override; | 98 void OnNetworkConfigRequested(bool requested) override; |
| 99 void OnNetworkStateChanged(bool online) override; | 99 void OnNetworkStateChanged(bool online) override; |
| 100 | 100 |
| 101 // StartupAppLauncher::Delegate overrides: | 101 // StartupAppLauncher::Delegate overrides: |
| 102 void InitializeNetwork() override; | 102 void InitializeNetwork() override; |
| 103 bool IsNetworkReady() override; | 103 bool IsNetworkReady() override; |
| 104 bool ShouldSkipAppInstallation() override; |
| 104 void OnLoadingOAuthFile() override; | 105 void OnLoadingOAuthFile() override; |
| 105 void OnInitializingTokenService() override; | 106 void OnInitializingTokenService() override; |
| 106 void OnInstallingApp() override; | 107 void OnInstallingApp() override; |
| 107 void OnReadyToLaunch() override; | 108 void OnReadyToLaunch() override; |
| 108 void OnLaunchSucceeded() override; | 109 void OnLaunchSucceeded() override; |
| 109 void OnLaunchFailed(KioskAppLaunchError::Error error) override; | 110 void OnLaunchFailed(KioskAppLaunchError::Error error) override; |
| 110 bool IsShowingNetworkConfigScreen() override; | 111 bool IsShowingNetworkConfigScreen() override; |
| 111 | 112 |
| 112 // AppLaunchSigninScreen::Delegate overrides: | 113 // AppLaunchSigninScreen::Delegate overrides: |
| 113 void OnOwnerSigninSuccess() override; | 114 void OnOwnerSigninSuccess() override; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 static base::Closure* network_timeout_callback_; | 149 static base::Closure* network_timeout_callback_; |
| 149 static ReturnBoolCallback* can_configure_network_callback_; | 150 static ReturnBoolCallback* can_configure_network_callback_; |
| 150 static ReturnBoolCallback* need_owner_auth_to_configure_network_callback_; | 151 static ReturnBoolCallback* need_owner_auth_to_configure_network_callback_; |
| 151 | 152 |
| 152 DISALLOW_COPY_AND_ASSIGN(AppLaunchController); | 153 DISALLOW_COPY_AND_ASSIGN(AppLaunchController); |
| 153 }; | 154 }; |
| 154 | 155 |
| 155 } // namespace chromeos | 156 } // namespace chromeos |
| 156 | 157 |
| 157 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_CONTROLLER_H_ | 158 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_APP_LAUNCH_CONTROLLER_H_ |
| OLD | NEW |