OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_LOGIN_DISPLAY_HOST_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 | 104 |
105 // Invoked when system preferences that affect the signin screen have changed. | 105 // Invoked when system preferences that affect the signin screen have changed. |
106 virtual void OnPreferencesChanged() = 0; | 106 virtual void OnPreferencesChanged() = 0; |
107 | 107 |
108 // Initiates authentication network prewarming. | 108 // Initiates authentication network prewarming. |
109 virtual void PrewarmAuthentication() = 0; | 109 virtual void PrewarmAuthentication() = 0; |
110 | 110 |
111 // Starts app launch splash screen. | 111 // Starts app launch splash screen. |
112 virtual void StartAppLaunch(const std::string& app_id, | 112 virtual void StartAppLaunch(const std::string& app_id, |
113 bool diagnostic_mode) = 0; | 113 bool diagnostic_mode) = 0; |
| 114 |
| 115 // Starts the demo app launch. |
| 116 virtual void StartDemoAppLaunch() = 0; |
114 }; | 117 }; |
115 | 118 |
116 } // namespace chromeos | 119 } // namespace chromeos |
117 | 120 |
118 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ | 121 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_H_ |
OLD | NEW |