Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: chrome/browser/chromeos/login/screens/app_launch_splash_screen_actor.h

Issue 149843004: kiosk: Skip network check for offline enabled app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698