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