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

Side by Side Diff: chrome/browser/chromeos/login/login_display_host.h

Issue 156493004: Add the ability to show a demo app on OOBE if a machine is derelict. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 (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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698