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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
576 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; | 576 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; |
577 | 577 |
578 // Enables the experimental asynchronous DNS client. | 578 // Enables the experimental asynchronous DNS client. |
579 const char kEnableAsyncDns[] = "enable-async-dns"; | 579 const char kEnableAsyncDns[] = "enable-async-dns"; |
580 | 580 |
581 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 581 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
582 // in response to a Negotiate challenge. See | 582 // in response to a Negotiate challenge. See |
583 // HttpAuthHandlerNegotiate::CreateSPN for more background. | 583 // HttpAuthHandlerNegotiate::CreateSPN for more background. |
584 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 584 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
585 | 585 |
| 586 // Enables the i18n address input widget for the requestAutocomplete() dialog. |
| 587 const char kEnableAutofillAddressI18n[] = "enable-autofill-address-i18n"; |
| 588 |
586 // Enable using a public suffix based domain matching for autofill of passwords. | 589 // Enable using a public suffix based domain matching for autofill of passwords. |
587 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = | 590 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = |
588 "enable-password-autofill-public-suffix-domain-matching"; | 591 "enable-password-autofill-public-suffix-domain-matching"; |
589 | 592 |
590 // Enables the pre- and auto-login features. When a user signs in to sync, the | 593 // Enables the pre- and auto-login features. When a user signs in to sync, the |
591 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 594 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
592 // GAIA login page, an info bar can help the user login. | 595 // GAIA login page, an info bar can help the user login. |
593 const char kEnableAutologin[] = "enable-autologin"; | 596 const char kEnableAutologin[] = "enable-autologin"; |
594 | 597 |
595 // Enables the benchmarking extensions. | 598 // Enables the benchmarking extensions. |
(...skipping 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1662 | 1665 |
1663 // ----------------------------------------------------------------------------- | 1666 // ----------------------------------------------------------------------------- |
1664 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1667 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1665 // | 1668 // |
1666 // You were going to just dump your switches here, weren't you? Instead, please | 1669 // You were going to just dump your switches here, weren't you? Instead, please |
1667 // put them in alphabetical order above, or in order inside the appropriate | 1670 // put them in alphabetical order above, or in order inside the appropriate |
1668 // ifdef at the bottom. The order should match the header. | 1671 // ifdef at the bottom. The order should match the header. |
1669 // ----------------------------------------------------------------------------- | 1672 // ----------------------------------------------------------------------------- |
1670 | 1673 |
1671 } // namespace switches | 1674 } // namespace switches |
OLD | NEW |