| Index: components/sync_driver/shared_change_processor.cc
 | 
| diff --git a/components/sync_driver/shared_change_processor.cc b/components/sync_driver/shared_change_processor.cc
 | 
| index 64cf35a0911b76b6efabbadf4e5fc0b309b03dce..1854e200b04ccb8d1e6df04b83b828c5ba53624f 100644
 | 
| --- a/components/sync_driver/shared_change_processor.cc
 | 
| +++ b/components/sync_driver/shared_change_processor.cc
 | 
| @@ -4,6 +4,8 @@
 | 
|  
 | 
|  #include "components/sync_driver/shared_change_processor.h"
 | 
|  
 | 
| +#include <utility>
 | 
| +
 | 
|  #include "base/thread_task_runner_handle.h"
 | 
|  #include "components/sync_driver/generic_change_processor.h"
 | 
|  #include "components/sync_driver/generic_change_processor_factory.h"
 | 
| @@ -82,7 +84,7 @@ base::WeakPtr<syncer::SyncableService> SharedChangeProcessor::Connect(
 | 
|    scoped_ptr<syncer::AttachmentService> attachment_service =
 | 
|        generic_change_processor_->GetAttachmentService();
 | 
|    if (attachment_service) {
 | 
| -    local_service->SetAttachmentService(attachment_service.Pass());
 | 
| +    local_service->SetAttachmentService(std::move(attachment_service));
 | 
|    }
 | 
|    return local_service;
 | 
|  }
 | 
| 
 |