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

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

Issue 492043003: Fill on account select in the password manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on ToT 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 | Annotate | Revision Log
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 // Disables the experiment for the password manager to only fill on account
11 // selection, rather than autofilling on page load.
12 const char kDisableFillOnAccountSelect[] = "disable-fill-on-account-select";
13
10 // Forces the password manager to not ignore autocomplete='off' for password 14 // Forces the password manager to not ignore autocomplete='off' for password
11 // forms. 15 // forms.
12 const char kDisableIgnoreAutocompleteOff[] = "do-not-ignore-autocomplete-off"; 16 const char kDisableIgnoreAutocompleteOff[] = "do-not-ignore-autocomplete-off";
13 17
14 // Disables password generation when we detect that the user is going through 18 // Disables password generation when we detect that the user is going through
15 // account creation. 19 // account creation.
16 const char kDisablePasswordGeneration[] = "disable-password-generation"; 20 const char kDisablePasswordGeneration[] = "disable-password-generation";
17 21
22 // Enables the experiment for the password manager to only fill on account
23 // selection, rather than autofilling on page load.
24 const char kEnableFillOnAccountSelect[] = "enable-fill-on-account-select";
25
18 // Enables password generation when we detect that the user is going through 26 // Enables password generation when we detect that the user is going through
19 // account creation. 27 // account creation.
20 const char kEnablePasswordGeneration[] = "enable-password-generation"; 28 const char kEnablePasswordGeneration[] = "enable-password-generation";
21 29
22 // Ignores autocomplete="off" for Autofill data (profiles + credit cards). 30 // Ignores autocomplete="off" for Autofill data (profiles + credit cards).
23 const char kIgnoreAutocompleteOffForAutofill[] = 31 const char kIgnoreAutocompleteOffForAutofill[] =
24 "ignore-autocomplete-off-autofill"; 32 "ignore-autocomplete-off-autofill";
25 33
26 // Removes the requirement that we recieved a ping from the autofill servers 34 // Removes the requirement that we recieved a ping from the autofill servers
27 // and that the user doesn't have the given form blacklisted. Used in testing. 35 // and that the user doesn't have the given form blacklisted. Used in testing.
28 const char kLocalHeuristicsOnlyForPasswordGeneration[] = 36 const char kLocalHeuristicsOnlyForPasswordGeneration[] =
29 "local-heuristics-only-for-password-generation"; 37 "local-heuristics-only-for-password-generation";
30 38
31 // Annotates forms with Autofill field type predictions. 39 // Annotates forms with Autofill field type predictions.
32 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; 40 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions";
33 41
34 // Secure service URL for Online Wallet service. Used as the base url to escrow 42 // Secure service URL for Online Wallet service. Used as the base url to escrow
35 // credit card numbers. 43 // credit card numbers.
36 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url"; 44 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url";
37 45
38 // Service URL for Online Wallet service. Used as the base url for Online Wallet 46 // Service URL for Online Wallet service. Used as the base url for Online Wallet
39 // API calls. 47 // API calls.
40 const char kWalletServiceUrl[] = "wallet-service-url"; 48 const char kWalletServiceUrl[] = "wallet-service-url";
41 49
42 // Use the sandbox Online Wallet service URL (for developer testing). 50 // Use the sandbox Online Wallet service URL (for developer testing).
43 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; 51 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox";
44 52
45 } // namespace switches 53 } // namespace switches
46 } // namespace autofill 54 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698