Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: components/autofill/core/browser/webdata/autofill_wallet_metadata_syncable_service.h

Issue 2511973004: components: Cleanup class/struct fwd declarations (Closed)
Patch Set: Rebase on top of current master branch Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "components/sync/model/sync_error.h" 18 #include "components/sync/model/sync_error.h"
19 #include "components/sync/model/sync_merge_result.h" 19 #include "components/sync/model/sync_merge_result.h"
20 #include "components/sync/model/syncable_service.h" 20 #include "components/sync/model/syncable_service.h"
21 #include "components/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;
31 class SyncErrorFactory; 30 class SyncErrorFactory;
32 } 31 }
33 32
34 namespace tracked_objects { 33 namespace tracked_objects {
35 class Location; 34 class Location;
36 } 35 }
37 36
38 namespace autofill { 37 namespace autofill {
39 38
40 class AutofillDataModel; 39 class AutofillDataModel;
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 142
144 // Local metadata plus metadata for the data that hasn't synced down yet. 143 // Local metadata plus metadata for the data that hasn't synced down yet.
145 syncer::SyncDataList cache_; 144 syncer::SyncDataList cache_;
146 145
147 DISALLOW_COPY_AND_ASSIGN(AutofillWalletMetadataSyncableService); 146 DISALLOW_COPY_AND_ASSIGN(AutofillWalletMetadataSyncableService);
148 }; 147 };
149 148
150 } // namespace autofill 149 } // namespace autofill
151 150
152 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_METADATA_SYN CABLE_SERVICE_H_ 151 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_METADATA_SYN CABLE_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698