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

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

Issue 256003003: Enable Automatic Passwords Saving (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
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 10 // Forces the password manager to not ignore autocomplete='off' for password
11 // forms. 11 // forms.
12 const char kDisableIgnoreAutocompleteOff[] = "do-not-ignore-autocomplete-off"; 12 const char kDisableIgnoreAutocompleteOff[] = "do-not-ignore-autocomplete-off";
13 13
14 // Disables password generation when we detect that the user is going through 14 // Disables password generation when we detect that the user is going through
15 // account creation. 15 // account creation.
16 const char kDisablePasswordGeneration[] = "disable-password-generation"; 16 const char kDisablePasswordGeneration[] = "disable-password-generation";
17 17
18 // Enables password generation when we detect that the user is going through 18 // Enables password generation when we detect that the user is going through
19 // account creation. 19 // account creation.
20 const char kEnablePasswordGeneration[] = "enable-password-generation"; 20 const char kEnablePasswordGeneration[] = "enable-password-generation";
21 21
22 // Disables password prompt and saves automatically password without notifying
23 // the user.
24 const char kEnableAutomaticPasswordsSaving[] =
25 "enable-automatic-passwords-saving";
26
22 // Removes the requirement that we recieved a ping from the autofill servers 27 // Removes the requirement that we recieved a ping from the autofill servers
23 // and that the user doesn't have the given form blacklisted. Used in testing. 28 // and that the user doesn't have the given form blacklisted. Used in testing.
24 const char kLocalHeuristicsOnlyForPasswordGeneration[] = 29 const char kLocalHeuristicsOnlyForPasswordGeneration[] =
25 "local-heuristics-only-for-password-generation"; 30 "local-heuristics-only-for-password-generation";
26 31
27 // Annotates forms with Autofill field type predictions. 32 // Annotates forms with Autofill field type predictions.
28 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; 33 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions";
29 34
30 // Secure service URL for Online Wallet service. Used as the base url to escrow 35 // Secure service URL for Online Wallet service. Used as the base url to escrow
31 // credit card numbers. 36 // credit card numbers.
32 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url"; 37 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url";
33 38
34 // Service URL for Online Wallet service. Used as the base url for Online Wallet 39 // Service URL for Online Wallet service. Used as the base url for Online Wallet
35 // API calls. 40 // API calls.
36 const char kWalletServiceUrl[] = "wallet-service-url"; 41 const char kWalletServiceUrl[] = "wallet-service-url";
37 42
38 // Use the sandbox Online Wallet service URL (for developer testing). 43 // Use the sandbox Online Wallet service URL (for developer testing).
39 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; 44 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox";
40 45
41 } // namespace switches 46 } // namespace switches
42 } // namespace autofill 47 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698