| Index: third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversalTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversalTest.cpp b/third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversalTest.cpp
|
| index 6dbcf268cd63e8c19f4f1878034bc7d7fced0b12..55ca8a761e5d04cdc6fa09a5f928518e4d9b9c9c 100644
|
| --- a/third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversalTest.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/shadow/FlatTreeTraversalTest.cpp
|
| @@ -17,9 +17,9 @@
|
| #include "platform/geometry/IntSize.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "wtf/Compiler.h"
|
| -#include "wtf/OwnPtr.h"
|
| #include "wtf/StdLibExtras.h"
|
| #include "wtf/Vector.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -41,7 +41,7 @@ private:
|
| void SetUp() override;
|
|
|
| Persistent<HTMLDocument> m_document;
|
| - OwnPtr<DummyPageHolder> m_dummyPageHolder;
|
| + std::unique_ptr<DummyPageHolder> m_dummyPageHolder;
|
| };
|
|
|
| void FlatTreeTraversalTest::SetUp()
|
|
|