Index: components/component_updater/component_updater_service.cc |
diff --git a/components/component_updater/component_updater_service.cc b/components/component_updater/component_updater_service.cc |
index 1c49d262e8ddcb518fccc5077a33f1370441d2f9..490e5c41c0cf056eacf64dca05b589886a62fbd9 100644 |
--- a/components/component_updater/component_updater_service.cc |
+++ b/components/component_updater/component_updater_service.cc |
@@ -352,7 +352,7 @@ scoped_ptr<ComponentUpdateService> ComponentUpdateServiceFactory( |
DCHECK(config); |
auto update_client = update_client::UpdateClientFactory(config); |
return scoped_ptr<ComponentUpdateService>( |
- new CrxUpdateService(config, update_client.Pass())); |
+ new CrxUpdateService(config, std::move(update_client))); |
} |
} // namespace component_updater |