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

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

Issue 303263002: sync: move SharedChangeProcessor to components/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/sync/glue/shared_change_processor.h" 5 #include "components/sync_driver/shared_change_processor.h"
6 6
7 #include "base/message_loop/message_loop_proxy.h" 7 #include "base/message_loop/message_loop_proxy.h"
8 #include "components/sync_driver/generic_change_processor.h" 8 #include "components/sync_driver/generic_change_processor.h"
9 #include "components/sync_driver/generic_change_processor_factory.h" 9 #include "components/sync_driver/generic_change_processor_factory.h"
10 #include "components/sync_driver/sync_api_component_factory.h" 10 #include "components/sync_driver/sync_api_component_factory.h"
11 #include "sync/api/sync_change.h" 11 #include "sync/api/sync_change.h"
12 12
13 using base::AutoLock; 13 using base::AutoLock;
14 14
15 namespace browser_sync { 15 namespace browser_sync {
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 return error_handler_->CreateAndUploadError(location, message, type_); 202 return error_handler_->CreateAndUploadError(location, message, type_);
203 } else { 203 } else {
204 return syncer::SyncError(location, 204 return syncer::SyncError(location,
205 syncer::SyncError::DATATYPE_ERROR, 205 syncer::SyncError::DATATYPE_ERROR,
206 message, 206 message,
207 type_); 207 type_);
208 } 208 }
209 } 209 }
210 210
211 } // namespace browser_sync 211 } // namespace browser_sync
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698