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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 492 // running a tab's onunload js handler independently of the GUI - | 492 // running a tab's onunload js handler independently of the GUI - |
| 493 // crbug.com/142458 . | 493 // crbug.com/142458 . |
| 494 const char kEnableFastUnload[] = "enable-fast-unload"; | 494 const char kEnableFastUnload[] = "enable-fast-unload"; |
| 495 | 495 |
| 496 // Enables IPv6 support, even if probes suggest that it may not be fully | 496 // Enables IPv6 support, even if probes suggest that it may not be fully |
| 497 // supported. Some probes may require internet connections, and this flag will | 497 // supported. Some probes may require internet connections, and this flag will |
| 498 // allow support independent of application testing. This flag overrides | 498 // allow support independent of application testing. This flag overrides |
| 499 // "disable-ipv6" which appears elswhere in this file. | 499 // "disable-ipv6" which appears elswhere in this file. |
| 500 const char kEnableIPv6[] = "enable-ipv6"; | 500 const char kEnableIPv6[] = "enable-ipv6"; |
| 501 | 501 |
| 502 // Allows a feature that holds back some SSLConnectJobs in order to | |
| 503 // maximize the number of full SSL handshakes completed. | |
| 504 const char kEnableJobWaiting[] = "enable-job-waiting"; | |
|
wtc
2014/06/13 22:47:24
This option should be "enable-ssl-connect-job-wait
mshelley1
2014/06/16 19:02:49
Done.
| |
| 505 | |
| 502 // Enables experimentation with launching ephemeral apps via hyperlinks. | 506 // Enables experimentation with launching ephemeral apps via hyperlinks. |
| 503 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; | 507 const char kEnableLinkableEphemeralApps[] = "enable-linkable-ephemeral-apps"; |
| 504 | 508 |
| 505 // Runs the Native Client inside the renderer process and enables GPU plugin | 509 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 506 // (internally adds lEnableGpuPlugin to the command line). | 510 // (internally adds lEnableGpuPlugin to the command line). |
| 507 const char kEnableNaCl[] = "enable-nacl"; | 511 const char kEnableNaCl[] = "enable-nacl"; |
| 508 | 512 |
| 509 // Enables the network-related benchmarking extensions. | 513 // Enables the network-related benchmarking extensions. |
| 510 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; | 514 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; |
| 511 | 515 |
| (...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1387 | 1391 |
| 1388 // ----------------------------------------------------------------------------- | 1392 // ----------------------------------------------------------------------------- |
| 1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1390 // | 1394 // |
| 1391 // You were going to just dump your switches here, weren't you? Instead, please | 1395 // You were going to just dump your switches here, weren't you? Instead, please |
| 1392 // put them in alphabetical order above, or in order inside the appropriate | 1396 // put them in alphabetical order above, or in order inside the appropriate |
| 1393 // ifdef at the bottom. The order should match the header. | 1397 // ifdef at the bottom. The order should match the header. |
| 1394 // ----------------------------------------------------------------------------- | 1398 // ----------------------------------------------------------------------------- |
| 1395 | 1399 |
| 1396 } // namespace switches | 1400 } // namespace switches |
| OLD | NEW |