| 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 // 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. | 565 // Enables the network-related benchmarking extensions. |
| 566 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; | 566 const char kEnableNetBenchmarking[] = "enable-net-benchmarking"; |
| 567 | 567 |
| 568 // 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 |
| 569 // part of the renderer process. http://crbug.com/51644 | 569 // part of the renderer process. http://crbug.com/51644 |
| 570 const char kEnableNewAutofillUi[] = "enable-new-autofill-ui"; | 570 const char kEnableNewAutofillUi[] = "enable-new-autofill-ui"; |
| 571 | 571 |
| 572 // Enables new Autofill heuristics, such as adding support for new field types. | |
| 573 const char kEnableNewAutofillHeuristics[] = "enable-new-autofill-heuristics"; | |
| 574 | |
| 575 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY. | 572 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY. |
| 576 const char kEnableNpn[] = "enable-npn"; | 573 const char kEnableNpn[] = "enable-npn"; |
| 577 | 574 |
| 578 // Enables NPN with HTTP. It means NPN is enabled but SPDY won't be used. | 575 // Enables NPN with HTTP. It means NPN is enabled but SPDY won't be used. |
| 579 // HTTP is still used for all requests. | 576 // HTTP is still used for all requests. |
| 580 const char kEnableNpnHttpOnly[] = "enable-npn-http"; | 577 const char kEnableNpnHttpOnly[] = "enable-npn-http"; |
| 581 | 578 |
| 582 // Enables panels (always on-top docked pop-up windows). | 579 // Enables panels (always on-top docked pop-up windows). |
| 583 const char kEnablePanels[] = "enable-panels"; | 580 const char kEnablePanels[] = "enable-panels"; |
| 584 | 581 |
| (...skipping 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1665 | 1662 |
| 1666 // ----------------------------------------------------------------------------- | 1663 // ----------------------------------------------------------------------------- |
| 1667 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1664 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1668 // | 1665 // |
| 1669 // You were going to just dump your switches here, weren't you? Instead, please | 1666 // You were going to just dump your switches here, weren't you? Instead, please |
| 1670 // put them in alphabetical order above, or in order inside the appropriate | 1667 // put them in alphabetical order above, or in order inside the appropriate |
| 1671 // ifdef at the bottom. The order should match the header. | 1668 // ifdef at the bottom. The order should match the header. |
| 1672 // ----------------------------------------------------------------------------- | 1669 // ----------------------------------------------------------------------------- |
| 1673 | 1670 |
| 1674 } // namespace switches | 1671 } // namespace switches |
| OLD | NEW |