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

Side by Side Diff: components/sync_driver/shared_change_processor.cc

Issue 1970833002: Fix include path for moved thread_task_runner_handle.h header in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393009 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 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 #include "components/sync_driver/shared_change_processor.h" 5 #include "components/sync_driver/shared_change_processor.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/thread_task_runner_handle.h" 9 #include "base/threading/thread_task_runner_handle.h"
10 #include "components/sync_driver/generic_change_processor.h" 10 #include "components/sync_driver/generic_change_processor.h"
11 #include "components/sync_driver/generic_change_processor_factory.h" 11 #include "components/sync_driver/generic_change_processor_factory.h"
12 #include "components/sync_driver/sync_client.h" 12 #include "components/sync_driver/sync_client.h"
13 #include "sync/api/sync_change.h" 13 #include "sync/api/sync_change.h"
14 #include "sync/api/syncable_service.h" 14 #include "sync/api/syncable_service.h"
15 15
16 using base::AutoLock; 16 using base::AutoLock;
17 17
18 namespace syncer { 18 namespace syncer {
19 class AttachmentService; 19 class AttachmentService;
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 return error_handler_->CreateAndUploadError(location, message, type_); 215 return error_handler_->CreateAndUploadError(location, message, type_);
216 } else { 216 } else {
217 return syncer::SyncError(location, 217 return syncer::SyncError(location,
218 syncer::SyncError::DATATYPE_ERROR, 218 syncer::SyncError::DATATYPE_ERROR,
219 message, 219 message,
220 type_); 220 type_);
221 } 221 }
222 } 222 }
223 223
224 } // namespace sync_driver 224 } // namespace sync_driver
OLDNEW
« no previous file with comments | « components/sync_driver/profile_sync_auth_provider.cc ('k') | components/sync_driver/startup_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698