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 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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_service.h"
19 #include "components/sync/api/attachments/attachment_service_proxy.h"
20 #include "components/sync/api/attachments/attachment_store.h"
21 #include "components/sync/api/data_type_error_handler.h"
22 #include "components/sync/api/sync_change_processor.h"
23 #include "components/sync/api/sync_merge_result.h"
24 #include "components/sync/driver/change_processor.h" 18 #include "components/sync/driver/change_processor.h"
19 #include "components/sync/model/attachments/attachment_service.h"
20 #include "components/sync/model/attachments/attachment_service_proxy.h"
21 #include "components/sync/model/attachments/attachment_store.h"
22 #include "components/sync/model/data_type_error_handler.h"
23 #include "components/sync/model/sync_change_processor.h"
24 #include "components/sync/model/sync_merge_result.h"
25 25
26 namespace syncer { 26 namespace syncer {
27 27
28 class SyncApiComponentFactory; 28 class SyncApiComponentFactory;
29 class SyncClient; 29 class SyncClient;
30 class SyncData; 30 class SyncData;
31 class SyncableService; 31 class SyncableService;
32 class WriteNode; 32 class WriteNode;
33 class WriteTransaction; 33 class WriteTransaction;
34 34
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 attachment_service_weak_ptr_factory_; 186 attachment_service_weak_ptr_factory_;
187 AttachmentServiceProxy attachment_service_proxy_; 187 AttachmentServiceProxy attachment_service_proxy_;
188 base::WeakPtrFactory<GenericChangeProcessor> weak_ptr_factory_; 188 base::WeakPtrFactory<GenericChangeProcessor> weak_ptr_factory_;
189 189
190 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessor); 190 DISALLOW_COPY_AND_ASSIGN(GenericChangeProcessor);
191 }; 191 };
192 192
193 } // namespace syncer 193 } // namespace syncer
194 194
195 #endif // COMPONENTS_SYNC_DRIVER_GENERIC_CHANGE_PROCESSOR_H_ 195 #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