| Index: net/proxy/proxy_script_fetcher_impl_unittest.cc
|
| diff --git a/net/proxy/proxy_script_fetcher_impl_unittest.cc b/net/proxy/proxy_script_fetcher_impl_unittest.cc
|
| index ecbe3fd2d4f486278e407ac6e2d0d35872ae404f..a230ab34ae89d32a4d501c605b5c746d4e12a4ab 100644
|
| --- a/net/proxy/proxy_script_fetcher_impl_unittest.cc
|
| +++ b/net/proxy/proxy_script_fetcher_impl_unittest.cc
|
| @@ -5,6 +5,7 @@
|
| #include "net/proxy/proxy_script_fetcher_impl.h"
|
|
|
| #include <string>
|
| +#include <utility>
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/files/file_path.h"
|
| @@ -89,7 +90,7 @@ class RequestContext : public URLRequestContext {
|
| make_scoped_ptr(new FileProtocolHandler(
|
| base::ThreadTaskRunnerHandle::Get())));
|
| #endif
|
| - storage_.set_job_factory(job_factory.Pass());
|
| + storage_.set_job_factory(std::move(job_factory));
|
| }
|
|
|
| ~RequestContext() override { AssertNoURLRequests(); }
|
|
|