| Index: third_party/WebKit/Source/core/layout/LayoutTestHelper.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTestHelper.h b/third_party/WebKit/Source/core/layout/LayoutTestHelper.h
|
| index a6c0c6cac725b4d004640c2315878ab03792e34b..189a8d87d89fb7179a60317f4aa40bb0af874400 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTestHelper.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTestHelper.h
|
| @@ -13,8 +13,8 @@
|
| #include "core/loader/EmptyClients.h"
|
| #include "core/testing/DummyPageHolder.h"
|
| #include "wtf/Allocator.h"
|
| -#include "wtf/OwnPtr.h"
|
| #include <gtest/gtest.h>
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -60,7 +60,7 @@ private:
|
| Persistent<LocalFrame> m_subframe;
|
| Persistent<FrameLoaderClient> m_frameLoaderClient;
|
| Persistent<FrameLoaderClient> m_childFrameLoaderClient;
|
| - OwnPtr<DummyPageHolder> m_pageHolder;
|
| + std::unique_ptr<DummyPageHolder> m_pageHolder;
|
| };
|
|
|
| class SingleChildFrameLoaderClient final : public EmptyFrameLoaderClient {
|
|
|