| OLD | NEW |
| 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 20 matching lines...) Expand all Loading... |
| 31 // Double that indicates negative (for not matched forms) upload rate. | 31 // Double that indicates negative (for not matched forms) upload rate. |
| 32 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate"; | 32 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate"; |
| 33 | 33 |
| 34 // Double that indicates positive (for matched forms) upload rate. | 34 // Double that indicates positive (for matched forms) upload rate. |
| 35 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate"; | 35 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate"; |
| 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. |
| 42 const char kAutofillWalletImportEnabled[] = "autofill.wallet_import_enabled"; |
| 43 |
| 41 } // namespace prefs | 44 } // namespace prefs |
| 42 } // namespace autofill | 45 } // namespace autofill |
| OLD | NEW |