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

Side by Side Diff: components/sync_driver/generic_change_processor.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_GENERIC_CHANGE_PROCESSOR_H_ 5 #ifndef COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_H_
6 #define COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_H_ 6 #define COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/memory/weak_ptr.h" 16 #include "base/memory/weak_ptr.h"
17 #include "base/threading/non_thread_safe.h" 17 #include "base/threading/non_thread_safe.h"
18 #include "components/sync/api/attachments/attachment_store.h"
19 #include "components/sync/api/sync_change_processor.h"
20 #include "components/sync/api/sync_merge_result.h"
21 #include "components/sync/core/attachments/attachment_service.h"
22 #include "components/sync/core/attachments/attachment_service_proxy.h"
18 #include "components/sync_driver/change_processor.h" 23 #include "components/sync_driver/change_processor.h"
19 #include "sync/api/attachments/attachment_store.h"
20 #include "sync/api/sync_change_processor.h"
21 #include "sync/api/sync_merge_result.h"
22 #include "sync/internal_api/public/attachments/attachment_service.h"
23 #include "sync/internal_api/public/attachments/attachment_service_proxy.h"
24 24
25 namespace syncer { 25 namespace syncer {
26 class DataTypeErrorHandler; 26 class DataTypeErrorHandler;
27 class SyncData; 27 class SyncData;
28 class SyncableService; 28 class SyncableService;
29 class WriteNode; 29 class WriteNode;
30 class WriteTransaction; 30 class WriteTransaction;
31 31
32 typedef std::vector<syncer::SyncData> SyncDataList; 32 typedef std::vector<syncer::SyncData> SyncDataList;
33 } // namespace syncer 33 } // namespace syncer
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 attachment_service_weak_ptr_factory_; 173 attachment_service_weak_ptr_factory_;
174 syncer::AttachmentServiceProxy attachment_service_proxy_; 174 syncer::AttachmentServiceProxy attachment_service_proxy_;
175 base::WeakPtrFactory<GenericChangeProcessor> weak_ptr_factory_; 175 base::WeakPtrFactory<GenericChangeProcessor> weak_ptr_factory_;
176 176
177 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessor); 177 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessor);
178 }; 178 };
179 179
180 } // namespace sync_driver 180 } // namespace sync_driver
181 181
182 #endif // COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_H_ 182 #endif // COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_H_
OLDNEW
« no previous file with comments | « components/sync_driver/frontend_data_type_controller_mock.h ('k') | components/sync_driver/generic_change_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698