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

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

Issue 2074253002: [Autofill] Dedupe profiles on each major version. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed rogerm's comments Created 4 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
« 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 if Autofill is enabled and allowed to save profile data. 10 // Boolean that is true if Autofill is enabled and allowed to save profile data.
11 const char kAutofillEnabled[] = "autofill.enabled"; 11 const char kAutofillEnabled[] = "autofill.enabled";
12 12
13 // Boolean that is true if Autofill address profiles were fixed regarding their 13 // Boolean that is true if Autofill address profiles were fixed regarding their
14 // bad use dates. 14 // bad use dates.
15 const char kAutofillProfileUseDatesFixed[] = "autofill.profile_use_dates_fixed"; 15 const char kAutofillProfileUseDatesFixed[] = "autofill.profile_use_dates_fixed";
16 16
17 // Boolean that's true when Wallet card and address import is enabled by the 17 // Boolean that's true when Wallet card and address import is enabled by the
18 // user. 18 // user.
19 const char kAutofillWalletImportEnabled[] = "autofill.wallet_import_enabled"; 19 const char kAutofillWalletImportEnabled[] = "autofill.wallet_import_enabled";
20 20
21 // Integer that is set to the last version where the profile deduping routine
22 // was run. This routine will be run once per version.
23 const char kAutofillLastVersionDeduped[] = "autofill.last_version_deduped";
24
21 // Boolean that allows the "Don't ask again for this card" checkbox to be 25 // Boolean that allows the "Don't ask again for this card" checkbox to be
22 // sticky. 26 // sticky.
23 const char kAutofillWalletImportStorageCheckboxState[] = 27 const char kAutofillWalletImportStorageCheckboxState[] =
24 "autofill.wallet_import_storage_checkbox_state"; 28 "autofill.wallet_import_storage_checkbox_state";
25 29
26 } // namespace prefs 30 } // namespace prefs
27 } // namespace autofill 31 } // 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