| Index: content/shell/browser/layout_test/layout_test_content_browser_client.cc
|
| diff --git a/content/shell/browser/layout_test/layout_test_content_browser_client.cc b/content/shell/browser/layout_test/layout_test_content_browser_client.cc
|
| index f86e9d8cf86828edab78912b29ced4e00be51aa0..a1fac6641d92dfd8199eef3d33d63a279015fb42 100644
|
| --- a/content/shell/browser/layout_test/layout_test_content_browser_client.cc
|
| +++ b/content/shell/browser/layout_test/layout_test_content_browser_client.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "content/shell/browser/layout_test/layout_test_content_browser_client.h"
|
|
|
| +#include "base/memory/ptr_util.h"
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/render_process_host.h"
|
| @@ -81,7 +82,7 @@ void LayoutTestContentBrowserClient::OverrideWebkitPrefs(
|
|
|
| void LayoutTestContentBrowserClient::ResourceDispatcherHostCreated() {
|
| set_resource_dispatcher_host_delegate(
|
| - make_scoped_ptr(new LayoutTestResourceDispatcherHostDelegate));
|
| + base::WrapUnique(new LayoutTestResourceDispatcherHostDelegate));
|
| ResourceDispatcherHost::Get()->SetDelegate(
|
| resource_dispatcher_host_delegate());
|
| }
|
|
|