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

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: Rebased 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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute"; 491 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute";
492 492
493 // Enables the experimental asynchronous DNS client. 493 // Enables the experimental asynchronous DNS client.
494 const char kEnableAsyncDns[] = "enable-async-dns"; 494 const char kEnableAsyncDns[] = "enable-async-dns";
495 495
496 // Enables the inclusion of non-standard ports when generating the Kerberos SPN 496 // Enables the inclusion of non-standard ports when generating the Kerberos SPN
497 // in response to a Negotiate challenge. See 497 // in response to a Negotiate challenge. See
498 // HttpAuthHandlerNegotiate::CreateSPN for more background. 498 // HttpAuthHandlerNegotiate::CreateSPN for more background.
499 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; 499 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port";
500 500
501 // Enable using a public suffix based domain matching for autofill of passwords.
502 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] =
503 "enable-password-autofill-public-suffix-domain-matching";
504
501 // Enables the pre- and auto-login features. When a user signs in to sync, the 505 // Enables the pre- and auto-login features. When a user signs in to sync, the
502 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a 506 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a
503 // GAIA login page, an info bar can help the user login. 507 // GAIA login page, an info bar can help the user login.
504 const char kEnableAutologin[] = "enable-autologin"; 508 const char kEnableAutologin[] = "enable-autologin";
505 509
506 // Enables the benchmarking extensions. 510 // Enables the benchmarking extensions.
507 const char kEnableBenchmarking[] = "enable-benchmarking"; 511 const char kEnableBenchmarking[] = "enable-benchmarking";
508 512
509 // This applies only when the process type is "service". Enables the Cloud 513 // This applies only when the process type is "service". Enables the Cloud
510 // Print Proxy component within the service process. 514 // Print Proxy component within the service process.
(...skipping 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after
1625 1629
1626 // ----------------------------------------------------------------------------- 1630 // -----------------------------------------------------------------------------
1627 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1631 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1628 // 1632 //
1629 // You were going to just dump your switches here, weren't you? Instead, please 1633 // You were going to just dump your switches here, weren't you? Instead, please
1630 // put them in alphabetical order above, or in order inside the appropriate 1634 // put them in alphabetical order above, or in order inside the appropriate
1631 // ifdef at the bottom. The order should match the header. 1635 // ifdef at the bottom. The order should match the header.
1632 // ----------------------------------------------------------------------------- 1636 // -----------------------------------------------------------------------------
1633 1637
1634 } // namespace switches 1638 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698