| 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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 // matches any pattern. If the value starts with !, a program will be debugged | 555 // matches any pattern. If the value starts with !, a program will be debugged |
| 556 // if manifest URL does not match any pattern. | 556 // if manifest URL does not match any pattern. |
| 557 const char kNaClDebugMask[] = "nacl-debug-mask"; | 557 const char kNaClDebugMask[] = "nacl-debug-mask"; |
| 558 | 558 |
| 559 // Enables hardware exception handling via debugger process. | 559 // Enables hardware exception handling via debugger process. |
| 560 const char kEnableNaClExceptionHandling[] = "enable-nacl-exception-handling"; | 560 const char kEnableNaClExceptionHandling[] = "enable-nacl-exception-handling"; |
| 561 | 561 |
| 562 // Enables the native messaging extensions API. | 562 // Enables the native messaging extensions API. |
| 563 const char kEnableNativeMessaging[] = "enable-native-messaging"; | 563 const char kEnableNativeMessaging[] = "enable-native-messaging"; |
| 564 | 564 |
| 565 // Enables the network-related benchmarking extensions. |
| 566 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; |
| 567 |
| 565 // Enables the new Autofill UI, which is part of the browser process rather than | 568 // Enables the new Autofill UI, which is part of the browser process rather than |
| 566 // part of the renderer process. http://crbug.com/51644 | 569 // part of the renderer process. http://crbug.com/51644 |
| 567 const char kEnableNewAutofillUi[] = "enable-new-autofill-ui"; | 570 const char kEnableNewAutofillUi[] = "enable-new-autofill-ui"; |
| 568 | 571 |
| 569 // Enables new Autofill heuristics, such as adding support for new field types. | 572 // Enables new Autofill heuristics, such as adding support for new field types. |
| 570 const char kEnableNewAutofillHeuristics[] = "enable-new-autofill-heuristics"; | 573 const char kEnableNewAutofillHeuristics[] = "enable-new-autofill-heuristics"; |
| 571 | 574 |
| 572 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY. | 575 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY. |
| 573 const char kEnableNpn[] = "enable-npn"; | 576 const char kEnableNpn[] = "enable-npn"; |
| 574 | 577 |
| (...skipping 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1666 | 1669 |
| 1667 // ----------------------------------------------------------------------------- | 1670 // ----------------------------------------------------------------------------- |
| 1668 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1671 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1669 // | 1672 // |
| 1670 // You were going to just dump your switches here, weren't you? Instead, please | 1673 // You were going to just dump your switches here, weren't you? Instead, please |
| 1671 // put them in alphabetical order above, or in order inside the appropriate | 1674 // put them in alphabetical order above, or in order inside the appropriate |
| 1672 // ifdef at the bottom. The order should match the header. | 1675 // ifdef at the bottom. The order should match the header. |
| 1673 // ----------------------------------------------------------------------------- | 1676 // ----------------------------------------------------------------------------- |
| 1674 | 1677 |
| 1675 } // namespace switches | 1678 } // namespace switches |
| OLD | NEW |