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 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1256 // use Chromium's network stack to fetch, and V8 to evaluate. | 1256 // use Chromium's network stack to fetch, and V8 to evaluate. |
1257 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1257 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
1258 | 1258 |
1259 #if defined(OS_CHROMEOS) | 1259 #if defined(OS_CHROMEOS) |
1260 // Disables gdata content provider. | 1260 // Disables gdata content provider. |
1261 const char kDisableGData[] = "disable-gdata"; | 1261 const char kDisableGData[] = "disable-gdata"; |
1262 | 1262 |
1263 // Enables Libcros. | 1263 // Enables Libcros. |
1264 const char kEnableLibcros[] = "enable-libcros"; | 1264 const char kEnableLibcros[] = "enable-libcros"; |
1265 | 1265 |
| 1266 // Enables new OOBE/sign in design. |
| 1267 extern const char kEnableNewOobe[] = "enable-new-oobe"; |
| 1268 |
1266 // Enables touchpad three-finger-click as middle button. | 1269 // Enables touchpad three-finger-click as middle button. |
1267 const char kEnableTouchpadThreeFingerClick[] | 1270 const char kEnableTouchpadThreeFingerClick[] |
1268 = "touchpad-enable-three-finger-click"; | 1271 = "touchpad-enable-three-finger-click"; |
1269 | 1272 |
1270 // Skips OAuth part of ChromeOS login process. | 1273 // Skips OAuth part of ChromeOS login process. |
1271 const char kSkipOAuthLogin[] = "skip-oauth-login"; | 1274 const char kSkipOAuthLogin[] = "skip-oauth-login"; |
1272 | 1275 |
1273 // Enables device policy support on ChromeOS. | 1276 // Enables device policy support on ChromeOS. |
1274 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1277 const char kEnableDevicePolicy[] = "enable-device-policy"; |
1275 | 1278 |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1437 | 1440 |
1438 // ----------------------------------------------------------------------------- | 1441 // ----------------------------------------------------------------------------- |
1439 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1442 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1440 // | 1443 // |
1441 // You were going to just dump your switches here, weren't you? Instead, please | 1444 // You were going to just dump your switches here, weren't you? Instead, please |
1442 // put them in alphabetical order above, or in order inside the appropriate | 1445 // put them in alphabetical order above, or in order inside the appropriate |
1443 // ifdef at the bottom. The order should match the header. | 1446 // ifdef at the bottom. The order should match the header. |
1444 // ----------------------------------------------------------------------------- | 1447 // ----------------------------------------------------------------------------- |
1445 | 1448 |
1446 } // namespace switches | 1449 } // namespace switches |
OLD | NEW |