| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/api/data_type_error_handler_impl.h" | 5 #include "components/sync/model/data_type_error_handler_impl.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/metrics/histogram.h" | 8 #include "base/metrics/histogram.h" |
| 9 | 9 |
| 10 namespace syncer { | 10 namespace syncer { |
| 11 | 11 |
| 12 DataTypeErrorHandlerImpl::DataTypeErrorHandlerImpl( | 12 DataTypeErrorHandlerImpl::DataTypeErrorHandlerImpl( |
| 13 const scoped_refptr<base::SingleThreadTaskRunner>& ui_thread, | 13 const scoped_refptr<base::SingleThreadTaskRunner>& ui_thread, |
| 14 const base::Closure& dump_stack, | 14 const base::Closure& dump_stack, |
| 15 const ErrorCallback& sync_callback) | 15 const ErrorCallback& sync_callback) |
| (...skipping 20 matching lines...) Expand all Loading... |
| 36 dump_stack_.Run(); | 36 dump_stack_.Run(); |
| 37 return SyncError(location, SyncError::DATATYPE_ERROR, message, type); | 37 return SyncError(location, SyncError::DATATYPE_ERROR, message, type); |
| 38 } | 38 } |
| 39 | 39 |
| 40 std::unique_ptr<DataTypeErrorHandler> DataTypeErrorHandlerImpl::Copy() const { | 40 std::unique_ptr<DataTypeErrorHandler> DataTypeErrorHandlerImpl::Copy() const { |
| 41 return base::MakeUnique<DataTypeErrorHandlerImpl>(ui_thread_, dump_stack_, | 41 return base::MakeUnique<DataTypeErrorHandlerImpl>(ui_thread_, dump_stack_, |
| 42 sync_callback_); | 42 sync_callback_); |
| 43 } | 43 } |
| 44 | 44 |
| 45 } // namespace syncer | 45 } // namespace syncer |
| OLD | NEW |