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

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

Issue 15660018: [autofill] Add support for PSL domain matching for password autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed test expectation to match intention and comment Created 7 years, 6 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
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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute"; 487 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute";
488 488
489 // Enables the experimental asynchronous DNS client. 489 // Enables the experimental asynchronous DNS client.
490 const char kEnableAsyncDns[] = "enable-async-dns"; 490 const char kEnableAsyncDns[] = "enable-async-dns";
491 491
492 // Enables the inclusion of non-standard ports when generating the Kerberos SPN 492 // Enables the inclusion of non-standard ports when generating the Kerberos SPN
493 // in response to a Negotiate challenge. See 493 // in response to a Negotiate challenge. See
494 // HttpAuthHandlerNegotiate::CreateSPN for more background. 494 // HttpAuthHandlerNegotiate::CreateSPN for more background.
495 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; 495 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port";
496 496
497 // Enable using a public suffix based domain matching for autofill of passwords.
498 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] =
499 "enable-password-autofill-public-suffix-domain-matching";
500
497 // Enables the pre- and auto-login features. When a user signs in to sync, the 501 // Enables the pre- and auto-login features. When a user signs in to sync, the
498 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a 502 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a
499 // GAIA login page, an info bar can help the user login. 503 // GAIA login page, an info bar can help the user login.
500 const char kEnableAutologin[] = "enable-autologin"; 504 const char kEnableAutologin[] = "enable-autologin";
501 505
502 // Enables the benchmarking extensions. 506 // Enables the benchmarking extensions.
503 const char kEnableBenchmarking[] = "enable-benchmarking"; 507 const char kEnableBenchmarking[] = "enable-benchmarking";
504 508
505 // This applies only when the process type is "service". Enables the Cloud 509 // This applies only when the process type is "service". Enables the Cloud
506 // Print Proxy component within the service process. 510 // Print Proxy component within the service process.
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1622 1626
1623 // ----------------------------------------------------------------------------- 1627 // -----------------------------------------------------------------------------
1624 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1628 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1625 // 1629 //
1626 // You were going to just dump your switches here, weren't you? Instead, please 1630 // You were going to just dump your switches here, weren't you? Instead, please
1627 // put them in alphabetical order above, or in order inside the appropriate 1631 // put them in alphabetical order above, or in order inside the appropriate
1628 // ifdef at the bottom. The order should match the header. 1632 // ifdef at the bottom. The order should match the header.
1629 // ----------------------------------------------------------------------------- 1633 // -----------------------------------------------------------------------------
1630 1634
1631 } // namespace switches 1635 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/renderer/autofill/password_autofill_agent_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698