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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 | 572 |
573 // Enables debugging via RSP over a socket. | 573 // Enables debugging via RSP over a socket. |
574 const char kEnableNaClDebug[] = "enable-nacl-debug"; | 574 const char kEnableNaClDebug[] = "enable-nacl-debug"; |
575 | 575 |
576 // Enables the Chrome IPC-based Proxy for NaCl. | 576 // Enables the Chrome IPC-based Proxy for NaCl. |
577 const char kEnableNaClIPCProxy[] = "enable-nacl-ipc-proxy"; | 577 const char kEnableNaClIPCProxy[] = "enable-nacl-ipc-proxy"; |
578 | 578 |
579 // Enables hardware exception handling via debugger process. | 579 // Enables hardware exception handling via debugger process. |
580 const char kEnableNaClExceptionHandling[] = "enable-nacl-exception-handling"; | 580 const char kEnableNaClExceptionHandling[] = "enable-nacl-exception-handling"; |
581 | 581 |
| 582 // Enables the native messaging api. |
| 583 const char kEnableNativeMessaging[] = "enable-native-messaging"; |
| 584 |
582 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY. | 585 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY. |
583 const char kEnableNpn[] = "enable-npn"; | 586 const char kEnableNpn[] = "enable-npn"; |
584 | 587 |
585 // Enables NPN with HTTP. It means NPN is enabled but SPDY won't be used. | 588 // Enables NPN with HTTP. It means NPN is enabled but SPDY won't be used. |
586 // HTTP is still used for all requests. | 589 // HTTP is still used for all requests. |
587 const char kEnableNpnHttpOnly[] = "enable-npn-http"; | 590 const char kEnableNpnHttpOnly[] = "enable-npn-http"; |
588 | 591 |
589 // Enables TLS Channel ID extension. (The switch is still called | 592 // Enables TLS Channel ID extension. (The switch is still called |
590 // "enable-origin-bound-certs" for backwards compatability.) | 593 // "enable-origin-bound-certs" for backwards compatability.) |
591 const char kEnableOriginBoundCerts[] = "enable-origin-bound-certs"; | 594 const char kEnableOriginBoundCerts[] = "enable-origin-bound-certs"; |
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1515 | 1518 |
1516 // ----------------------------------------------------------------------------- | 1519 // ----------------------------------------------------------------------------- |
1517 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1520 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1518 // | 1521 // |
1519 // You were going to just dump your switches here, weren't you? Instead, please | 1522 // You were going to just dump your switches here, weren't you? Instead, please |
1520 // put them in alphabetical order above, or in order inside the appropriate | 1523 // put them in alphabetical order above, or in order inside the appropriate |
1521 // ifdef at the bottom. The order should match the header. | 1524 // ifdef at the bottom. The order should match the header. |
1522 // ----------------------------------------------------------------------------- | 1525 // ----------------------------------------------------------------------------- |
1523 | 1526 |
1524 } // namespace switches | 1527 } // namespace switches |
OLD | NEW |