| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "components/autofill/common/autofill_pref_names.h" | |
| 6 | |
| 7 namespace autofill { | |
| 8 namespace prefs { | |
| 9 | |
| 10 // Boolean that is true when auxiliary Autofill profiles are enabled. | |
| 11 // Currently applies to Address Book "me" card on Mac. False on Win and Linux. | |
| 12 const char kAutofillAuxiliaryProfilesEnabled[] = | |
| 13 "autofill.auxiliary_profiles_enabled"; | |
| 14 | |
| 15 // Boolean that is true if Autofill is enabled and allowed to save profile data. | |
| 16 const char kAutofillEnabled[] = "autofill.enabled"; | |
| 17 | |
| 18 // Double that indicates negative (for not matched forms) upload rate. | |
| 19 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate"; | |
| 20 | |
| 21 // Double that indicates positive (for matched forms) upload rate. | |
| 22 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate"; | |
| 23 | |
| 24 } // namespace prefs | |
| 25 } // namespace autofill | |
| OLD | NEW |