Chromium Code Reviews| 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 444 | 444 |
| 445 // Enables IPv6 support, even if probes suggest that it may not be fully | 445 // Enables IPv6 support, even if probes suggest that it may not be fully |
| 446 // supported. Some probes may require internet connections, and this flag will | 446 // supported. Some probes may require internet connections, and this flag will |
| 447 // allow support independent of application testing. This flag overrides | 447 // allow support independent of application testing. This flag overrides |
| 448 // "disable-ipv6" which appears elswhere in this file. | 448 // "disable-ipv6" which appears elswhere in this file. |
| 449 const char kEnableIPv6[] = "enable-ipv6"; | 449 const char kEnableIPv6[] = "enable-ipv6"; |
| 450 | 450 |
| 451 // Enables experimentation with launching ephemeral apps via hyperlinks. | 451 // Enables experimentation with launching ephemeral apps via hyperlinks. |
| 452 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; | 452 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; |
| 453 | 453 |
| 454 // Enables the material design Settings page/app. | |
| 455 const char kEnableMaterialDesignSettings[] = "enable-material-design-settings"; | |
|
James Hawkins
2015/02/03 22:08:46
enable-md-settings
Oren Blasberg
2015/02/03 22:13:34
Done.
| |
| 456 | |
| 454 // Runs the Native Client inside the renderer process and enables GPU plugin | 457 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 455 // (internally adds lEnableGpuPlugin to the command line). | 458 // (internally adds lEnableGpuPlugin to the command line). |
| 456 const char kEnableNaCl[] = "enable-nacl"; | 459 const char kEnableNaCl[] = "enable-nacl"; |
| 457 | 460 |
| 458 // Enables the network-related benchmarking extensions. | 461 // Enables the network-related benchmarking extensions. |
| 459 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; | 462 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; |
| 460 | 463 |
| 461 // Enables the new bookmark app system. | 464 // Enables the new bookmark app system. |
| 462 const char kEnableNewBookmarkApps[] = "enable-new-bookmark-apps"; | 465 const char kEnableNewBookmarkApps[] = "enable-new-bookmark-apps"; |
| 463 | 466 |
| (...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1392 | 1395 |
| 1393 // ----------------------------------------------------------------------------- | 1396 // ----------------------------------------------------------------------------- |
| 1394 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1397 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1395 // | 1398 // |
| 1396 // You were going to just dump your switches here, weren't you? Instead, please | 1399 // You were going to just dump your switches here, weren't you? Instead, please |
| 1397 // put them in alphabetical order above, or in order inside the appropriate | 1400 // put them in alphabetical order above, or in order inside the appropriate |
| 1398 // ifdef at the bottom. The order should match the header. | 1401 // ifdef at the bottom. The order should match the header. |
| 1399 // ----------------------------------------------------------------------------- | 1402 // ----------------------------------------------------------------------------- |
| 1400 | 1403 |
| 1401 } // namespace switches | 1404 } // namespace switches |
| OLD | NEW |