| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |