OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 Screen current_screen, Screen new_screen) = 0; | 58 Screen current_screen, Screen new_screen) = 0; |
59 }; | 59 }; |
60 | 60 |
61 // List of known types of OobeUI. Type added as path in chrome://oobe url, for | 61 // List of known types of OobeUI. Type added as path in chrome://oobe url, for |
62 // example chrome://oobe/user-adding. | 62 // example chrome://oobe/user-adding. |
63 static const char kOobeDisplay[]; | 63 static const char kOobeDisplay[]; |
64 static const char kLoginDisplay[]; | 64 static const char kLoginDisplay[]; |
65 static const char kLockDisplay[]; | 65 static const char kLockDisplay[]; |
66 static const char kUserAddingDisplay[]; | 66 static const char kUserAddingDisplay[]; |
67 static const char kAppLaunchSplashDisplay[]; | 67 static const char kAppLaunchSplashDisplay[]; |
68 static const char kNewOobeDisplay[]; | |
69 | 68 |
70 // JS oobe/login screens names. | 69 // JS oobe/login screens names. |
71 static const char kScreenOobeHIDDetection[]; | 70 static const char kScreenOobeHIDDetection[]; |
72 static const char kScreenOobeNetwork[]; | 71 static const char kScreenOobeNetwork[]; |
73 static const char kScreenOobeEnableDebugging[]; | 72 static const char kScreenOobeEnableDebugging[]; |
74 static const char kScreenOobeEula[]; | 73 static const char kScreenOobeEula[]; |
75 static const char kScreenOobeUpdate[]; | 74 static const char kScreenOobeUpdate[]; |
76 static const char kScreenOobeEnrollment[]; | 75 static const char kScreenOobeEnrollment[]; |
77 static const char kScreenOobeReset[]; | 76 static const char kScreenOobeReset[]; |
78 static const char kScreenGaiaSignin[]; | 77 static const char kScreenGaiaSignin[]; |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 | 258 |
260 // Observer of CrosSettings watching the kRebootOnShutdown policy. | 259 // Observer of CrosSettings watching the kRebootOnShutdown policy. |
261 scoped_ptr<ShutdownPolicyHandler> shutdown_policy_handler_; | 260 scoped_ptr<ShutdownPolicyHandler> shutdown_policy_handler_; |
262 | 261 |
263 DISALLOW_COPY_AND_ASSIGN(OobeUI); | 262 DISALLOW_COPY_AND_ASSIGN(OobeUI); |
264 }; | 263 }; |
265 | 264 |
266 } // namespace chromeos | 265 } // namespace chromeos |
267 | 266 |
268 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ | 267 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_OOBE_UI_H_ |
OLD | NEW |