| 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 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's true when Wallet card and address import is enabled by the | 13 // Boolean that's true when Wallet card and address import is enabled by the |
| 14 // user. This will only be available to the user if the overall feature is | 14 // user. |
| 15 // enabled. | |
| 16 const char kAutofillWalletImportEnabled[] = "autofill.wallet_import_enabled"; | 15 const char kAutofillWalletImportEnabled[] = "autofill.wallet_import_enabled"; |
| 17 | 16 |
| 18 // Boolean that allows the "Don't ask again for this card" checkbox to be | 17 // Boolean that allows the "Don't ask again for this card" checkbox to be |
| 19 // sticky. | 18 // sticky. |
| 20 const char kAutofillWalletImportStorageCheckboxState[] = | 19 const char kAutofillWalletImportStorageCheckboxState[] = |
| 21 "autofill.wallet_import_storage_checkbox_state"; | 20 "autofill.wallet_import_storage_checkbox_state"; |
| 22 | 21 |
| 23 // Enables/disables the Wallet card and address feature. Set via sync | |
| 24 // experiment. | |
| 25 const char kAutofillWalletSyncExperimentEnabled[] = | |
| 26 "autofill.wallet_import_sync_experiment_enabled"; | |
| 27 | |
| 28 } // namespace prefs | 22 } // namespace prefs |
| 29 } // namespace autofill | 23 } // namespace autofill |
| OLD | NEW |