| 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 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1263 // use Chromium's network stack to fetch, and V8 to evaluate. | 1263 // use Chromium's network stack to fetch, and V8 to evaluate. |
| 1264 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1264 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
| 1265 | 1265 |
| 1266 #if defined(OS_CHROMEOS) | 1266 #if defined(OS_CHROMEOS) |
| 1267 // Disables gdata content provider. | 1267 // Disables gdata content provider. |
| 1268 const char kDisableGData[] = "disable-gdata"; | 1268 const char kDisableGData[] = "disable-gdata"; |
| 1269 | 1269 |
| 1270 // Enables Libcros. | 1270 // Enables Libcros. |
| 1271 const char kEnableLibcros[] = "enable-libcros"; | 1271 const char kEnableLibcros[] = "enable-libcros"; |
| 1272 | 1272 |
| 1273 // Enables new OOBE/sign in design. |
| 1274 extern const char kEnableNewOobe[] = "enable-new-oobe"; |
| 1275 |
| 1273 // Enables touchpad three-finger-click as middle button. | 1276 // Enables touchpad three-finger-click as middle button. |
| 1274 const char kEnableTouchpadThreeFingerClick[] | 1277 const char kEnableTouchpadThreeFingerClick[] |
| 1275 = "touchpad-enable-three-finger-click"; | 1278 = "touchpad-enable-three-finger-click"; |
| 1276 | 1279 |
| 1277 // Skips OAuth part of ChromeOS login process. | 1280 // Skips OAuth part of ChromeOS login process. |
| 1278 const char kSkipOAuthLogin[] = "skip-oauth-login"; | 1281 const char kSkipOAuthLogin[] = "skip-oauth-login"; |
| 1279 | 1282 |
| 1280 // Enables device policy support on ChromeOS. | 1283 // Enables device policy support on ChromeOS. |
| 1281 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1284 const char kEnableDevicePolicy[] = "enable-device-policy"; |
| 1282 | 1285 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1451 | 1454 |
| 1452 // ----------------------------------------------------------------------------- | 1455 // ----------------------------------------------------------------------------- |
| 1453 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1456 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1454 // | 1457 // |
| 1455 // You were going to just dump your switches here, weren't you? Instead, please | 1458 // You were going to just dump your switches here, weren't you? Instead, please |
| 1456 // put them in alphabetical order above, or in order inside the appropriate | 1459 // put them in alphabetical order above, or in order inside the appropriate |
| 1457 // ifdef at the bottom. The order should match the header. | 1460 // ifdef at the bottom. The order should match the header. |
| 1458 // ----------------------------------------------------------------------------- | 1461 // ----------------------------------------------------------------------------- |
| 1459 | 1462 |
| 1460 } // namespace switches | 1463 } // namespace switches |
| OLD | NEW |