| 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_AUTOFILL_CORE_BROWSER_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/single_thread_task_runner.h" |
| 9 #include "components/prefs/pref_change_registrar.h" | 10 #include "components/prefs/pref_change_registrar.h" |
| 10 #include "components/sync/driver/async_directory_type_controller.h" | 11 #include "components/sync/driver/async_directory_type_controller.h" |
| 11 | 12 |
| 12 namespace autofill { | 13 namespace autofill { |
| 13 class AutofillWebDataService; | 14 class AutofillWebDataService; |
| 14 } | 15 } |
| 15 | 16 |
| 16 namespace browser_sync { | 17 namespace browser_sync { |
| 17 | 18 |
| 18 // Controls syncing of either AUTOFILL_WALLET or AUTOFILL_WALLET_METADATA. | 19 // Controls syncing of either AUTOFILL_WALLET or AUTOFILL_WALLET_METADATA. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 54 |
| 54 // Registrar for listening to kAutofillWalletSyncExperimentEnabled status. | 55 // Registrar for listening to kAutofillWalletSyncExperimentEnabled status. |
| 55 PrefChangeRegistrar pref_registrar_; | 56 PrefChangeRegistrar pref_registrar_; |
| 56 | 57 |
| 57 DISALLOW_COPY_AND_ASSIGN(AutofillWalletDataTypeController); | 58 DISALLOW_COPY_AND_ASSIGN(AutofillWalletDataTypeController); |
| 58 }; | 59 }; |
| 59 | 60 |
| 60 } // namespace browser_sync | 61 } // namespace browser_sync |
| 61 | 62 |
| 62 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER
_H_ | 63 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_WALLET_DATA_TYPE_CONTROLLER
_H_ |
| OLD | NEW |