| OLD | NEW |
| 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/generic_change_processor.h" | 5 #include "components/sync_driver/generic_change_processor.h" |
| 6 | 6 |
| 7 #include "base/location.h" | 7 #include "base/location.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "components/sync_driver/sync_api_component_factory.h" | 10 #include "components/sync_driver/sync_api_component_factory.h" |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 } // namespace | 88 } // namespace |
| 89 | 89 |
| 90 GenericChangeProcessor::GenericChangeProcessor( | 90 GenericChangeProcessor::GenericChangeProcessor( |
| 91 syncer::ModelType type, | 91 syncer::ModelType type, |
| 92 DataTypeErrorHandler* error_handler, | 92 DataTypeErrorHandler* error_handler, |
| 93 const base::WeakPtr<syncer::SyncableService>& local_service, | 93 const base::WeakPtr<syncer::SyncableService>& local_service, |
| 94 const base::WeakPtr<syncer::SyncMergeResult>& merge_result, | 94 const base::WeakPtr<syncer::SyncMergeResult>& merge_result, |
| 95 syncer::UserShare* user_share, | 95 syncer::UserShare* user_share, |
| 96 SyncApiComponentFactory* sync_factory, | 96 SyncApiComponentFactory* sync_factory, |
| 97 scoped_ptr<syncer::AttachmentStore> attachment_store) | 97 scoped_ptr<syncer::AttachmentStoreForSync> attachment_store) |
| 98 : ChangeProcessor(error_handler), | 98 : ChangeProcessor(error_handler), |
| 99 type_(type), | 99 type_(type), |
| 100 local_service_(local_service), | 100 local_service_(local_service), |
| 101 merge_result_(merge_result), | 101 merge_result_(merge_result), |
| 102 share_handle_(user_share), | 102 share_handle_(user_share), |
| 103 weak_ptr_factory_(this) { | 103 weak_ptr_factory_(this) { |
| 104 DCHECK(CalledOnValidThread()); | 104 DCHECK(CalledOnValidThread()); |
| 105 DCHECK_NE(type_, syncer::UNSPECIFIED); | 105 DCHECK_NE(type_, syncer::UNSPECIFIED); |
| 106 if (attachment_store) { | 106 if (attachment_store) { |
| 107 std::string store_birthday; | 107 std::string store_birthday; |
| (...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 } | 719 } |
| 720 } | 720 } |
| 721 | 721 |
| 722 scoped_ptr<syncer::AttachmentService> | 722 scoped_ptr<syncer::AttachmentService> |
| 723 GenericChangeProcessor::GetAttachmentService() const { | 723 GenericChangeProcessor::GetAttachmentService() const { |
| 724 return scoped_ptr<syncer::AttachmentService>( | 724 return scoped_ptr<syncer::AttachmentService>( |
| 725 new syncer::AttachmentServiceProxy(attachment_service_proxy_)); | 725 new syncer::AttachmentServiceProxy(attachment_service_proxy_)); |
| 726 } | 726 } |
| 727 | 727 |
| 728 } // namespace sync_driver | 728 } // namespace sync_driver |
| OLD | NEW |