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_SCREENS_APP_LAUNCH_SPLASH_SCREEN_ACTOR_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_APP_LAUNCH_SPLASH_SCREEN_ACTOR_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_APP_LAUNCH_SPLASH_SCREEN_ACTOR_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_APP_LAUNCH_SPLASH_SCREEN_ACTOR_H_ |
7 | 7 |
8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
9 | 9 |
10 namespace chromeos { | 10 namespace chromeos { |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 virtual void Hide() = 0; | 52 virtual void Hide() = 0; |
53 | 53 |
54 // Set the current app launch state. | 54 // Set the current app launch state. |
55 virtual void UpdateAppLaunchState(AppLaunchState state) = 0; | 55 virtual void UpdateAppLaunchState(AppLaunchState state) = 0; |
56 | 56 |
57 // Sets whether configure network control is visible. | 57 // Sets whether configure network control is visible. |
58 virtual void ToggleNetworkConfig(bool visible) = 0; | 58 virtual void ToggleNetworkConfig(bool visible) = 0; |
59 | 59 |
60 // Shows the network error and configure UI. | 60 // Shows the network error and configure UI. |
61 virtual void ShowNetworkConfigureUI() = 0; | 61 virtual void ShowNetworkConfigureUI() = 0; |
| 62 |
| 63 // Returns true if the default network has Internet access. |
| 64 virtual bool IsNetworkReady() = 0; |
62 }; | 65 }; |
63 | 66 |
64 } // namespace chromeos | 67 } // namespace chromeos |
65 | 68 |
66 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_APP_LAUNCH_SPLASH_SCREEN_ACTOR_
H_ | 69 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_APP_LAUNCH_SPLASH_SCREEN_ACTOR_
H_ |
OLD | NEW |