Index: third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp |
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp |
index b39a29e39e8d1ba67ff9653ca1fa2f6a11c3299a..1cc2e7f4c574139d1c540f55839b8e2b394b30e8 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp |
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp |
@@ -18,10 +18,9 @@ |
#include "core/testing/GarbageCollectedScriptWrappable.h" |
#include "platform/heap/Handle.h" |
#include "testing/gtest/include/gtest/gtest.h" |
-#include "wtf/OwnPtr.h" |
-#include "wtf/PassOwnPtr.h" |
#include "wtf/PassRefPtr.h" |
#include "wtf/RefPtr.h" |
+#include <memory> |
#include <v8.h> |
using namespace blink; |
@@ -144,7 +143,7 @@ public: |
} |
private: |
- OwnPtr<DummyPageHolder> m_page; |
+ std::unique_ptr<DummyPageHolder> m_page; |
RefPtr<ScriptState> m_otherScriptState; |
}; |