| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef COMPONENTS_SYNC_DRIVER_GLUE_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_GLUE_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER_H_ |
| 6 #define COMPONENTS_SYNC_DRIVER_GLUE_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER_H_ | 6 #define COMPONENTS_SYNC_DRIVER_GLUE_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "components/prefs/pref_change_registrar.h" | 9 #include "base/prefs/pref_change_registrar.h" |
| 10 #include "components/sync_driver/non_ui_data_type_controller.h" | 10 #include "components/sync_driver/non_ui_data_type_controller.h" |
| 11 | 11 |
| 12 namespace autofill { | 12 namespace autofill { |
| 13 class AutofillWebDataService; | 13 class AutofillWebDataService; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace browser_sync { | 16 namespace browser_sync { |
| 17 | 17 |
| 18 // Controls syncing of either AUTOFILL_WALLET or AUTOFILL_WALLET_METADATA. | 18 // Controls syncing of either AUTOFILL_WALLET or AUTOFILL_WALLET_METADATA. |
| 19 class AutofillWalletDataTypeController | 19 class AutofillWalletDataTypeController |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 // Registrar for listening to kAutofillWalletSyncExperimentEnabled status. | 74 // Registrar for listening to kAutofillWalletSyncExperimentEnabled status. |
| 75 PrefChangeRegistrar pref_registrar_; | 75 PrefChangeRegistrar pref_registrar_; |
| 76 | 76 |
| 77 DISALLOW_COPY_AND_ASSIGN(AutofillWalletDataTypeController); | 77 DISALLOW_COPY_AND_ASSIGN(AutofillWalletDataTypeController); |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 } // namespace browser_sync | 80 } // namespace browser_sync |
| 81 | 81 |
| 82 #endif // COMPONENTS_SYNC_DRIVER_GLUE_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER_H_ | 82 #endif // COMPONENTS_SYNC_DRIVER_GLUE_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER_H_ |
| OLD | NEW |