| 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; | 557 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; |
| 558 | 558 |
| 559 // Enables the experimental asynchronous DNS client. | 559 // Enables the experimental asynchronous DNS client. |
| 560 const char kEnableAsyncDns[] = "enable-async-dns"; | 560 const char kEnableAsyncDns[] = "enable-async-dns"; |
| 561 | 561 |
| 562 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 562 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
| 563 // in response to a Negotiate challenge. See | 563 // in response to a Negotiate challenge. See |
| 564 // HttpAuthHandlerNegotiate::CreateSPN for more background. | 564 // HttpAuthHandlerNegotiate::CreateSPN for more background. |
| 565 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 565 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| 566 | 566 |
| 567 // Enables the i18n address input widget for the requestAutocomplete() dialog. |
| 568 const char kEnableAutofillAddressInternationalization[] = |
| 569 "enable-autofill-address-i18n"; |
| 570 |
| 567 // Enable using a public suffix based domain matching for autofill of passwords. | 571 // Enable using a public suffix based domain matching for autofill of passwords. |
| 568 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = | 572 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = |
| 569 "enable-password-autofill-public-suffix-domain-matching"; | 573 "enable-password-autofill-public-suffix-domain-matching"; |
| 570 | 574 |
| 571 // Enables the pre- and auto-login features. When a user signs in to sync, the | 575 // Enables the pre- and auto-login features. When a user signs in to sync, the |
| 572 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 576 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
| 573 // GAIA login page, an info bar can help the user login. | 577 // GAIA login page, an info bar can help the user login. |
| 574 const char kEnableAutologin[] = "enable-autologin"; | 578 const char kEnableAutologin[] = "enable-autologin"; |
| 575 | 579 |
| 576 // Enables the benchmarking extensions. | 580 // Enables the benchmarking extensions. |
| (...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1646 | 1650 |
| 1647 // ----------------------------------------------------------------------------- | 1651 // ----------------------------------------------------------------------------- |
| 1648 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1652 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1649 // | 1653 // |
| 1650 // You were going to just dump your switches here, weren't you? Instead, please | 1654 // You were going to just dump your switches here, weren't you? Instead, please |
| 1651 // put them in alphabetical order above, or in order inside the appropriate | 1655 // put them in alphabetical order above, or in order inside the appropriate |
| 1652 // ifdef at the bottom. The order should match the header. | 1656 // ifdef at the bottom. The order should match the header. |
| 1653 // ----------------------------------------------------------------------------- | 1657 // ----------------------------------------------------------------------------- |
| 1654 | 1658 |
| 1655 } // namespace switches | 1659 } // namespace switches |
| OLD | NEW |