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

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

Issue 22914008: Refactor kiosk app launch to be part of login screen UI flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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
(Empty)
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
3 // found in the LICENSE file.
4
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_
7
8 #include "base/strings/string16.h"
9
10 namespace chromeos {
11
12 // Interface for UI implemenations of the ApplaunchSplashScreen.
13 class AppLaunchSplashScreenActor {
14 public:
15 enum AppLaunchState {
16 APP_LAUNCH_STATE_LOADING_AUTH_FILE,
17 APP_LAUNCH_STATE_LOADING_TOKEN_SERVICE,
18 APP_LAUNCH_STATE_PREPARING_NETWORK,
19 APP_LAUNCH_STATE_INSTALLING_APPLICATION,
20 };
21
22 class Delegate {
23 public:
24 virtual void OnConfigureNetwork() = 0;
25 virtual void OnCancelAppLaunch() = 0;
26
27 protected:
28 virtual ~Delegate() {}
29 };
30
31 virtual ~AppLaunchSplashScreenActor() {}
32
33 // Sets screen this actor belongs to.
34 virtual void SetDelegate(Delegate* screen) = 0;
35
36 // Prepare the contents to showing.
37 virtual void PrepareToShow() = 0;
38
39 // Shows the contents of the screen.
40 virtual void Show(const std::string& app_id) = 0;
41
42 // Hides the contents of the screen.
43 virtual void Hide() = 0;
44
45 // Set the current app launch state.
46 virtual void UpdateAppLaunchState(AppLaunchState state) = 0;
47
48 // Sets whether continue control is enabled.
49 virtual void ToggleNetworkConfig(bool visible) = 0;
50 };
51
52 } // namespace chromeos
53
54 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_APP_LAUNCH_SPLASH_SCREEN_ACTOR_ H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/oobe_display.h ('k') | chrome/browser/chromeos/login/webui_login_display.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698