| 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_METADATA_SYNCAB
LE_SERVICE_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_METADATA_SYNCAB
LE_SERVICE_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_METADATA_SYNCAB
LE_SERVICE_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_METADATA_SYNCAB
LE_SERVICE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/scoped_observer.h" | 13 #include "base/scoped_observer.h" |
| 14 #include "base/supports_user_data.h" | 14 #include "base/supports_user_data.h" |
| 15 #include "base/threading/thread_checker.h" | 15 #include "base/threading/thread_checker.h" |
| 16 #include "components/autofill/core/browser/webdata/autofill_change.h" | 16 #include "components/autofill/core/browser/webdata/autofill_change.h" |
| 17 #include "components/autofill/core/browser/webdata/autofill_webdata_service_obse
rver.h" | 17 #include "components/autofill/core/browser/webdata/autofill_webdata_service_obse
rver.h" |
| 18 #include "sync/api/sync_error.h" | 18 #include "components/sync/api/sync_error.h" |
| 19 #include "sync/api/sync_merge_result.h" | 19 #include "components/sync/api/sync_merge_result.h" |
| 20 #include "sync/api/syncable_service.h" | 20 #include "components/sync/api/syncable_service.h" |
| 21 #include "sync/protocol/autofill_specifics.pb.h" | 21 #include "components/sync/protocol/autofill_specifics.pb.h" |
| 22 | 22 |
| 23 namespace base { | 23 namespace base { |
| 24 template <typename, typename> | 24 template <typename, typename> |
| 25 class ScopedPtrHashMap; | 25 class ScopedPtrHashMap; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace syncer { | 28 namespace syncer { |
| 29 class SyncChangeProcessor; | 29 class SyncChangeProcessor; |
| 30 class SyncData; | 30 class SyncData; |
| 31 class SyncErrorFactory; | 31 class SyncErrorFactory; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 143 |
| 144 // Local metadata plus metadata for the data that hasn't synced down yet. | 144 // Local metadata plus metadata for the data that hasn't synced down yet. |
| 145 syncer::SyncDataList cache_; | 145 syncer::SyncDataList cache_; |
| 146 | 146 |
| 147 DISALLOW_COPY_AND_ASSIGN(AutofillWalletMetadataSyncableService); | 147 DISALLOW_COPY_AND_ASSIGN(AutofillWalletMetadataSyncableService); |
| 148 }; | 148 }; |
| 149 | 149 |
| 150 } // namespace autofill | 150 } // namespace autofill |
| 151 | 151 |
| 152 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_METADATA_SYN
CABLE_SERVICE_H_ | 152 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_METADATA_SYN
CABLE_SERVICE_H_ |
| OLD | NEW |