Index: third_party/WebKit/Source/core/editing/GranularityStrategyTest.cpp |
diff --git a/third_party/WebKit/Source/core/editing/GranularityStrategyTest.cpp b/third_party/WebKit/Source/core/editing/GranularityStrategyTest.cpp |
index dac7bae0998fd011a3260e3d1ab0a62c7425a988..82853affd405145f60878c8024362401eff1f81f 100644 |
--- a/third_party/WebKit/Source/core/editing/GranularityStrategyTest.cpp |
+++ b/third_party/WebKit/Source/core/editing/GranularityStrategyTest.cpp |
@@ -15,10 +15,10 @@ |
#include "core/testing/DummyPageHolder.h" |
#include "platform/heap/Handle.h" |
#include "testing/gtest/include/gtest/gtest.h" |
-#include "wtf/OwnPtr.h" |
#include "wtf/PassRefPtr.h" |
#include "wtf/RefPtr.h" |
#include "wtf/StdLibExtras.h" |
+#include <memory> |
namespace blink { |
@@ -69,7 +69,7 @@ protected: |
Vector<IntPoint> m_wordMiddles; |
private: |
- OwnPtr<DummyPageHolder> m_dummyPageHolder; |
+ std::unique_ptr<DummyPageHolder> m_dummyPageHolder; |
Persistent<HTMLDocument> m_document; |
}; |