| Index: chrome/browser/custom_handlers/protocol_handler_registry.cc
|
| diff --git a/chrome/browser/custom_handlers/protocol_handler_registry.cc b/chrome/browser/custom_handlers/protocol_handler_registry.cc
|
| index 8edaa909eebb85a0e858567ca93c081c95e5722c..1bce59dda7c2c5e8df28385a0fefaae1238cf010 100644
|
| --- a/chrome/browser/custom_handlers/protocol_handler_registry.cc
|
| +++ b/chrome/browser/custom_handlers/protocol_handler_registry.cc
|
| @@ -175,7 +175,7 @@ ProtocolHandlerRegistry::JobInterceptorFactory::~JobInterceptorFactory() {
|
|
|
| void ProtocolHandlerRegistry::JobInterceptorFactory::Chain(
|
| scoped_ptr<net::URLRequestJobFactory> job_factory) {
|
| - job_factory_ = job_factory.Pass();
|
| + job_factory_ = std::move(job_factory);
|
| }
|
|
|
| net::URLRequestJob*
|
|
|