| 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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 // Enables the chrome://memory-internals/ page. | 583 // Enables the chrome://memory-internals/ page. |
| 584 const char kEnableMemoryInternalsUI[] = "enable-memory-internals-ui"; | 584 const char kEnableMemoryInternalsUI[] = "enable-memory-internals-ui"; |
| 585 | 585 |
| 586 // Runs the Native Client inside the renderer process and enables GPU plugin | 586 // Runs the Native Client inside the renderer process and enables GPU plugin |
| 587 // (internally adds lEnableGpuPlugin to the command line). | 587 // (internally adds lEnableGpuPlugin to the command line). |
| 588 const char kEnableNaCl[] = "enable-nacl"; | 588 const char kEnableNaCl[] = "enable-nacl"; |
| 589 | 589 |
| 590 // Enables debugging via RSP over a socket. | 590 // Enables debugging via RSP over a socket. |
| 591 const char kEnableNaClDebug[] = "enable-nacl-debug"; | 591 const char kEnableNaClDebug[] = "enable-nacl-debug"; |
| 592 | 592 |
| 593 // Enables hardware exception handling via debugger process. | |
| 594 const char kEnableNaClExceptionHandling[] = "enable-nacl-exception-handling"; | |
| 595 | |
| 596 // Enables the network-related benchmarking extensions. | 593 // Enables the network-related benchmarking extensions. |
| 597 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; | 594 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; |
| 598 | 595 |
| 599 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY. | 596 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY. |
| 600 const char kEnableNpn[] = "enable-npn"; | 597 const char kEnableNpn[] = "enable-npn"; |
| 601 | 598 |
| 602 // Enables NPN with HTTP. It means NPN is enabled but SPDY won't be used. | 599 // Enables NPN with HTTP. It means NPN is enabled but SPDY won't be used. |
| 603 // HTTP is still used for all requests. | 600 // HTTP is still used for all requests. |
| 604 const char kEnableNpnHttpOnly[] = "enable-npn-http"; | 601 const char kEnableNpnHttpOnly[] = "enable-npn-http"; |
| 605 | 602 |
| (...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1693 | 1690 |
| 1694 // ----------------------------------------------------------------------------- | 1691 // ----------------------------------------------------------------------------- |
| 1695 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1692 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1696 // | 1693 // |
| 1697 // You were going to just dump your switches here, weren't you? Instead, please | 1694 // You were going to just dump your switches here, weren't you? Instead, please |
| 1698 // put them in alphabetical order above, or in order inside the appropriate | 1695 // put them in alphabetical order above, or in order inside the appropriate |
| 1699 // ifdef at the bottom. The order should match the header. | 1696 // ifdef at the bottom. The order should match the header. |
| 1700 // ----------------------------------------------------------------------------- | 1697 // ----------------------------------------------------------------------------- |
| 1701 | 1698 |
| 1702 } // namespace switches | 1699 } // namespace switches |
| OLD | NEW |