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

Side by Side Diff: components/autofill/core/common/autofill_switches.cc

Issue 697233002: Remove flag to disable ignore autocomplete='off' for password forms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 6 years, 1 month 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "components/autofill/core/common/autofill_switches.h" 5 #include "components/autofill/core/common/autofill_switches.h"
6 6
7 namespace autofill { 7 namespace autofill {
8 namespace switches { 8 namespace switches {
9 9
10 // Forces the password manager to not ignore autocomplete='off' for password
11 // forms.
12 const char kDisableIgnoreAutocompleteOff[] = "do-not-ignore-autocomplete-off";
13
14 // Disables password generation when we detect that the user is going through 10 // Disables password generation when we detect that the user is going through
15 // account creation. 11 // account creation.
16 const char kDisablePasswordGeneration[] = "disable-password-generation"; 12 const char kDisablePasswordGeneration[] = "disable-password-generation";
17 13
18 // Enables password generation when we detect that the user is going through 14 // Enables password generation when we detect that the user is going through
19 // account creation. 15 // account creation.
20 const char kEnablePasswordGeneration[] = "enable-password-generation"; 16 const char kEnablePasswordGeneration[] = "enable-password-generation";
21 17
22 // Ignores autocomplete="off" for Autofill data (profiles + credit cards). 18 // Ignores autocomplete="off" for Autofill data (profiles + credit cards).
23 const char kIgnoreAutocompleteOffForAutofill[] = 19 const char kIgnoreAutocompleteOffForAutofill[] =
(...skipping 13 matching lines...) Expand all
37 33
38 // Service URL for Online Wallet service. Used as the base url for Online Wallet 34 // Service URL for Online Wallet service. Used as the base url for Online Wallet
39 // API calls. 35 // API calls.
40 const char kWalletServiceUrl[] = "wallet-service-url"; 36 const char kWalletServiceUrl[] = "wallet-service-url";
41 37
42 // Use the sandbox Online Wallet service URL (for developer testing). 38 // Use the sandbox Online Wallet service URL (for developer testing).
43 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; 39 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox";
44 40
45 } // namespace switches 41 } // namespace switches
46 } // namespace autofill 42 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/common/autofill_switches.h ('k') | components/autofill/core/common/password_autofill_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698