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