| Index: content/shell/browser/layout_test/layout_test_browser_context.cc
|
| diff --git a/content/shell/browser/layout_test/layout_test_browser_context.cc b/content/shell/browser/layout_test/layout_test_browser_context.cc
|
| index 8127a659eeda0f0536775d8f31a04f22f9c71482..232e8b570e1f7a5f4b07f1d9e5fa85d5cb9acb51 100644
|
| --- a/content/shell/browser/layout_test/layout_test_browser_context.cc
|
| +++ b/content/shell/browser/layout_test/layout_test_browser_context.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/shell/browser/layout_test/layout_test_browser_context.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| #include "base/files/file_util.h"
|
| @@ -42,13 +44,10 @@ LayoutTestBrowserContext::CreateURLRequestContextGetter(
|
| ProtocolHandlerMap* protocol_handlers,
|
| URLRequestInterceptorScopedVector request_interceptors) {
|
| return new LayoutTestURLRequestContextGetter(
|
| - ignore_certificate_errors(),
|
| - GetPath(),
|
| + ignore_certificate_errors(), GetPath(),
|
| BrowserThread::UnsafeGetMessageLoopForThread(BrowserThread::IO),
|
| BrowserThread::UnsafeGetMessageLoopForThread(BrowserThread::FILE),
|
| - protocol_handlers,
|
| - request_interceptors.Pass(),
|
| - net_log());
|
| + protocol_handlers, std::move(request_interceptors), net_log());
|
| }
|
|
|
| DownloadManagerDelegate*
|
|
|