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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 470 | 470 |
| 471 // Enables IPv6 support, even if probes suggest that it may not be fully | 471 // Enables IPv6 support, even if probes suggest that it may not be fully |
| 472 // supported. Some probes may require internet connections, and this flag will | 472 // supported. Some probes may require internet connections, and this flag will |
| 473 // allow support independent of application testing. This flag overrides | 473 // allow support independent of application testing. This flag overrides |
| 474 // "disable-ipv6" which appears elswhere in this file. | 474 // "disable-ipv6" which appears elswhere in this file. |
| 475 const char kEnableIPv6[] = "enable-ipv6"; | 475 const char kEnableIPv6[] = "enable-ipv6"; |
| 476 | 476 |
| 477 // Enables experimentation with launching ephemeral apps via hyperlinks. | 477 // Enables experimentation with launching ephemeral apps via hyperlinks. |
| 478 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; | 478 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; |
| 479 | 479 |
| 480 // Enables the Link Disambiguation popup bubble on Aura-based Chrome. | |
| 481 const char kEnableLinkDisambiguationPopup[] = | |
| 482 "enable-link-disambiguation-popup"; | |
|
luken
2014/11/14 19:57:00
need a disable-link-disambiguation-popup as well.
| |
| 483 | |
| 480 // Runs the Native Client inside the renderer process and enables GPU plugin | 484 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 481 // (internally adds lEnableGpuPlugin to the command line). | 485 // (internally adds lEnableGpuPlugin to the command line). |
| 482 const char kEnableNaCl[] = "enable-nacl"; | 486 const char kEnableNaCl[] = "enable-nacl"; |
| 483 | 487 |
| 484 // Enables the network-related benchmarking extensions. | 488 // Enables the network-related benchmarking extensions. |
| 485 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; | 489 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; |
| 486 | 490 |
| 487 // Enables the Material Design NTP. | 491 // Enables the Material Design NTP. |
| 488 const char kEnableMaterialDesignNTP[] = "enable-material-design-ntp"; | 492 const char kEnableMaterialDesignNTP[] = "enable-material-design-ntp"; |
| 489 | 493 |
| (...skipping 892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1382 | 1386 |
| 1383 // ----------------------------------------------------------------------------- | 1387 // ----------------------------------------------------------------------------- |
| 1384 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1388 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1385 // | 1389 // |
| 1386 // You were going to just dump your switches here, weren't you? Instead, please | 1390 // You were going to just dump your switches here, weren't you? Instead, please |
| 1387 // put them in alphabetical order above, or in order inside the appropriate | 1391 // put them in alphabetical order above, or in order inside the appropriate |
| 1388 // ifdef at the bottom. The order should match the header. | 1392 // ifdef at the bottom. The order should match the header. |
| 1389 // ----------------------------------------------------------------------------- | 1393 // ----------------------------------------------------------------------------- |
| 1390 | 1394 |
| 1391 } // namespace switches | 1395 } // namespace switches |
| OLD | NEW |