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

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

Issue 910043002: Add checkbox to card unmasking prompt (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix dbg compile Created 5 years, 10 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
« no previous file with comments | « components/autofill/core/common/autofill_pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_pref_names.h" 5 #include "components/autofill/core/common/autofill_pref_names.h"
6 6
7 namespace autofill { 7 namespace autofill {
8 namespace prefs { 8 namespace prefs {
9 9
10 // Boolean that is true when auxiliary Autofill profiles are enabled. This pref 10 // Boolean that is true when auxiliary Autofill profiles are enabled. This pref
(...skipping 25 matching lines...) Expand all
36 36
37 // Whether Autofill should try to use the Mac Address Book. If this value is 37 // Whether Autofill should try to use the Mac Address Book. If this value is
38 // true, then kAutofillMacAddressBookQueried is expected to also be true. 38 // true, then kAutofillMacAddressBookQueried is expected to also be true.
39 const char kAutofillUseMacAddressBook[] = "autofill.use_mac_address_book"; 39 const char kAutofillUseMacAddressBook[] = "autofill.use_mac_address_book";
40 40
41 // Boolean that's true when Wallet card and address import is enabled by the 41 // Boolean that's true when Wallet card and address import is enabled by the
42 // user. This will only be available to the user if the overall feature is 42 // user. This will only be available to the user if the overall feature is
43 // enabled. 43 // enabled.
44 const char kAutofillWalletImportEnabled[] = "autofill.wallet_import_enabled"; 44 const char kAutofillWalletImportEnabled[] = "autofill.wallet_import_enabled";
45 45
46 // Boolean that allows the "Don't ask again for this card" checkbox to be
47 // sticky.
48 const char kAutofillWalletImportStorageCheckboxState[] =
49 "autofill.wallet_import_storage_checkbox_state";
50
46 // Enables/disables the Wallet card and address feature. Set via sync 51 // Enables/disables the Wallet card and address feature. Set via sync
47 // experiment. Even if this is false, the feature can still be enabled via the 52 // experiment. Even if this is false, the feature can still be enabled via the
48 // command line flag flags::kEnableWalletCardImport. 53 // command line flag flags::kEnableWalletCardImport.
49 const char kAutofillWalletSyncExperimentEnabled[] = 54 const char kAutofillWalletSyncExperimentEnabled[] =
50 "autofill.wallet_import_sync_experiment_enabled"; 55 "autofill.wallet_import_sync_experiment_enabled";
51 56
52 } // namespace prefs 57 } // namespace prefs
53 } // namespace autofill 58 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/common/autofill_pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698