| 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 1322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to | 1333 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to |
| 1334 // use Chromium's network stack to fetch, and V8 to evaluate. | 1334 // use Chromium's network stack to fetch, and V8 to evaluate. |
| 1335 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1335 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
| 1336 | 1336 |
| 1337 #if defined(OS_ANDROID) | 1337 #if defined(OS_ANDROID) |
| 1338 // Use the tablet specific UI components when available. | 1338 // Use the tablet specific UI components when available. |
| 1339 const char kTabletUI[] = "tablet-ui"; | 1339 const char kTabletUI[] = "tablet-ui"; |
| 1340 #endif | 1340 #endif |
| 1341 | 1341 |
| 1342 #if defined(OS_CHROMEOS) | 1342 #if defined(OS_CHROMEOS) |
| 1343 // Disables wallpaper boot animation (except of OOBE case). |
| 1344 const char kDisableBootAnimation[] = "disable-boot-animation"; |
| 1345 |
| 1343 // Disables gdata content provider. | 1346 // Disables gdata content provider. |
| 1344 const char kDisableGData[] = "disable-gdata"; | 1347 const char kDisableGData[] = "disable-gdata"; |
| 1345 | 1348 |
| 1346 // Disables new WebRTC implementation of user image picker. | 1349 // Disables new WebRTC implementation of user image picker. |
| 1347 const char kDisableHtml5Camera[] = "disable-html5-camera"; | 1350 const char kDisableHtml5Camera[] = "disable-html5-camera"; |
| 1348 | 1351 |
| 1349 // Disables new OOBE/sign in design. | 1352 // Disables new OOBE/sign in design. |
| 1350 const char kDisableNewOobe[] = "disable-new-oobe"; | 1353 const char kDisableNewOobe[] = "disable-new-oobe"; |
| 1351 | 1354 |
| 1352 // Enables touchpad three-finger-click as middle button. | 1355 // Enables touchpad three-finger-click as middle button. |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1524 | 1527 |
| 1525 // ----------------------------------------------------------------------------- | 1528 // ----------------------------------------------------------------------------- |
| 1526 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1529 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1527 // | 1530 // |
| 1528 // You were going to just dump your switches here, weren't you? Instead, please | 1531 // You were going to just dump your switches here, weren't you? Instead, please |
| 1529 // put them in alphabetical order above, or in order inside the appropriate | 1532 // put them in alphabetical order above, or in order inside the appropriate |
| 1530 // ifdef at the bottom. The order should match the header. | 1533 // ifdef at the bottom. The order should match the header. |
| 1531 // ----------------------------------------------------------------------------- | 1534 // ----------------------------------------------------------------------------- |
| 1532 | 1535 |
| 1533 } // namespace switches | 1536 } // namespace switches |
| OLD | NEW |