| 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 // matches any pattern. If the value starts with !, a program will be debugged | 583 // matches any pattern. If the value starts with !, a program will be debugged |
| 584 // if manifest URL does not match any pattern. | 584 // if manifest URL does not match any pattern. |
| 585 const char kNaClDebugMask[] = "nacl-debug-mask"; | 585 const char kNaClDebugMask[] = "nacl-debug-mask"; |
| 586 | 586 |
| 587 // Enables the Chrome IPC-based Proxy for NaCl. | 587 // Enables the Chrome IPC-based Proxy for NaCl. |
| 588 const char kEnableNaClIPCProxy[] = "enable-nacl-ipc-proxy"; | 588 const char kEnableNaClIPCProxy[] = "enable-nacl-ipc-proxy"; |
| 589 | 589 |
| 590 // Enables hardware exception handling via debugger process. | 590 // Enables hardware exception handling via debugger process. |
| 591 const char kEnableNaClExceptionHandling[] = "enable-nacl-exception-handling"; | 591 const char kEnableNaClExceptionHandling[] = "enable-nacl-exception-handling"; |
| 592 | 592 |
| 593 // Enables the native messaging extensions API. |
| 594 const char kEnableNativeMessaging[] = "enable-native-messaging"; |
| 595 |
| 593 // 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. |
| 594 const char kEnableNpn[] = "enable-npn"; | 597 const char kEnableNpn[] = "enable-npn"; |
| 595 | 598 |
| 596 // 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. |
| 597 // HTTP is still used for all requests. | 600 // HTTP is still used for all requests. |
| 598 const char kEnableNpnHttpOnly[] = "enable-npn-http"; | 601 const char kEnableNpnHttpOnly[] = "enable-npn-http"; |
| 599 | 602 |
| 600 // Enables panels (always on-top docked pop-up windows). | 603 // Enables panels (always on-top docked pop-up windows). |
| 601 const char kEnablePanels[] = "enable-panels"; | 604 const char kEnablePanels[] = "enable-panels"; |
| 602 | 605 |
| (...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1586 | 1589 |
| 1587 // ----------------------------------------------------------------------------- | 1590 // ----------------------------------------------------------------------------- |
| 1588 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1591 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1589 // | 1592 // |
| 1590 // You were going to just dump your switches here, weren't you? Instead, please | 1593 // You were going to just dump your switches here, weren't you? Instead, please |
| 1591 // put them in alphabetical order above, or in order inside the appropriate | 1594 // put them in alphabetical order above, or in order inside the appropriate |
| 1592 // ifdef at the bottom. The order should match the header. | 1595 // ifdef at the bottom. The order should match the header. |
| 1593 // ----------------------------------------------------------------------------- | 1596 // ----------------------------------------------------------------------------- |
| 1594 | 1597 |
| 1595 } // namespace switches | 1598 } // namespace switches |
| OLD | NEW |