Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 25620002: [rac] Use i18n address inputs with --enable-autofill-address-i18n flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Avoid initializer list Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 const char kEnableAppWindowControls[] = "enable-app-window-controls"; 554 const char kEnableAppWindowControls[] = "enable-app-window-controls";
555 555
556 // Enables the experimental asynchronous DNS client. 556 // Enables the experimental asynchronous DNS client.
557 const char kEnableAsyncDns[] = "enable-async-dns"; 557 const char kEnableAsyncDns[] = "enable-async-dns";
558 558
559 // Enables the inclusion of non-standard ports when generating the Kerberos SPN 559 // Enables the inclusion of non-standard ports when generating the Kerberos SPN
560 // in response to a Negotiate challenge. See 560 // in response to a Negotiate challenge. See
561 // HttpAuthHandlerNegotiate::CreateSPN for more background. 561 // HttpAuthHandlerNegotiate::CreateSPN for more background.
562 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; 562 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port";
563 563
564 // Enables the i18n address input widget for the requestAutoComplete dialog.
565 const char kEnableAutofillAddressInternationalization[] =
566 "enable-autofill-address-i18n";
567
564 // Enable using a public suffix based domain matching for autofill of passwords. 568 // Enable using a public suffix based domain matching for autofill of passwords.
565 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = 569 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] =
566 "enable-password-autofill-public-suffix-domain-matching"; 570 "enable-password-autofill-public-suffix-domain-matching";
567 571
568 // Enables the pre- and auto-login features. When a user signs in to sync, the 572 // Enables the pre- and auto-login features. When a user signs in to sync, the
569 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a 573 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a
570 // GAIA login page, an info bar can help the user login. 574 // GAIA login page, an info bar can help the user login.
571 const char kEnableAutologin[] = "enable-autologin"; 575 const char kEnableAutologin[] = "enable-autologin";
572 576
573 // Enables the benchmarking extensions. 577 // Enables the benchmarking extensions.
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
1666 1670
1667 // ----------------------------------------------------------------------------- 1671 // -----------------------------------------------------------------------------
1668 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1672 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1669 // 1673 //
1670 // You were going to just dump your switches here, weren't you? Instead, please 1674 // 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 1675 // put them in alphabetical order above, or in order inside the appropriate
1672 // ifdef at the bottom. The order should match the header. 1676 // ifdef at the bottom. The order should match the header.
1673 // ----------------------------------------------------------------------------- 1677 // -----------------------------------------------------------------------------
1674 1678
1675 } // namespace switches 1679 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698