| 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_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SERVIC
E_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SERVIC
E_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SERVIC
E_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SERVIC
E_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/supports_user_data.h" | 9 #include "base/supports_user_data.h" |
| 10 #include "base/threading/thread_checker.h" | 10 #include "base/threading/thread_checker.h" |
| 11 #include "sync/api/syncable_service.h" | 11 #include "components/sync/api/syncable_service.h" |
| 12 | 12 |
| 13 namespace autofill { | 13 namespace autofill { |
| 14 | 14 |
| 15 class AutofillWebDataBackend; | 15 class AutofillWebDataBackend; |
| 16 class AutofillWebDataService; | 16 class AutofillWebDataService; |
| 17 | 17 |
| 18 // Syncs masked cards (last 4 digits only) and addresses from the sync user's | 18 // Syncs masked cards (last 4 digits only) and addresses from the sync user's |
| 19 // Wallet account. | 19 // Wallet account. |
| 20 class AutofillWalletSyncableService | 20 class AutofillWalletSyncableService |
| 21 : public base::SupportsUserData::Data, | 21 : public base::SupportsUserData::Data, |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 std::unique_ptr<syncer::SyncChangeProcessor> sync_processor_; | 67 std::unique_ptr<syncer::SyncChangeProcessor> sync_processor_; |
| 68 | 68 |
| 69 syncer::SyncableService::StartSyncFlare flare_; | 69 syncer::SyncableService::StartSyncFlare flare_; |
| 70 | 70 |
| 71 DISALLOW_COPY_AND_ASSIGN(AutofillWalletSyncableService); | 71 DISALLOW_COPY_AND_ASSIGN(AutofillWalletSyncableService); |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } // namespace autofill | 74 } // namespace autofill |
| 75 | 75 |
| 76 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SER
VICE_H_ | 76 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SER
VICE_H_ |
| OLD | NEW |