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

Unified Diff: components/sync_driver/generic_change_processor.h

Issue 1966023002: [Sync] Move DataTypeErrorHandler to //sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: components/sync_driver/generic_change_processor.h
diff --git a/components/sync_driver/generic_change_processor.h b/components/sync_driver/generic_change_processor.h
index 3db4a92140f66bd131cf8e47789eb914052e2faf..6cc906720bff059226b617a322fd962d3b96887c 100644
--- a/components/sync_driver/generic_change_processor.h
+++ b/components/sync_driver/generic_change_processor.h
@@ -16,14 +16,15 @@
#include "base/memory/weak_ptr.h"
#include "base/threading/non_thread_safe.h"
#include "components/sync_driver/change_processor.h"
-#include "components/sync_driver/data_type_error_handler.h"
#include "sync/api/attachments/attachment_store.h"
#include "sync/api/sync_change_processor.h"
#include "sync/api/sync_merge_result.h"
#include "sync/internal_api/public/attachments/attachment_service.h"
#include "sync/internal_api/public/attachments/attachment_service_proxy.h"
+#include "sync/internal_api/public/data_type_error_handler.h"
pavely 2016/05/11 18:29:04 Could you remove either include or forward-declare
maxbogue 2016/05/11 19:03:02 Done.
namespace syncer {
+class DataTypeErrorHandler;
class SyncData;
class SyncableService;
class WriteNode;
@@ -55,7 +56,7 @@ class GenericChangeProcessor : public ChangeProcessor,
// attachments.
GenericChangeProcessor(
syncer::ModelType type,
- DataTypeErrorHandler* error_handler,
+ syncer::DataTypeErrorHandler* error_handler,
const base::WeakPtr<syncer::SyncableService>& local_service,
const base::WeakPtr<syncer::SyncMergeResult>& merge_result,
syncer::UserShare* user_share,

Powered by Google App Engine
This is Rietveld 408576698