Index: third_party/WebKit/Source/core/streams/ReadableStreamReaderTest.cpp |
diff --git a/third_party/WebKit/Source/core/streams/ReadableStreamReaderTest.cpp b/third_party/WebKit/Source/core/streams/ReadableStreamReaderTest.cpp |
index af7b78e45ba2217e897f33c84ba2a342667b1290..9004c71ab36f9a066c501ea2f5ae269613391ff1 100644 |
--- a/third_party/WebKit/Source/core/streams/ReadableStreamReaderTest.cpp |
+++ b/third_party/WebKit/Source/core/streams/ReadableStreamReaderTest.cpp |
@@ -16,6 +16,7 @@ |
#include "core/streams/UnderlyingSource.h" |
#include "core/testing/DummyPageHolder.h" |
#include "testing/gtest/include/gtest/gtest.h" |
+#include <memory> |
namespace blink { |
@@ -150,7 +151,7 @@ public: |
return ReadResultCapturingFunction::createFunction(getScriptState(), value); |
} |
- OwnPtr<DummyPageHolder> m_page; |
+ std::unique_ptr<DummyPageHolder> m_page; |
Persistent<StringStream> m_stream; |
}; |