Index: third_party/WebKit/Source/web/tests/FrameTestHelpers.h |
diff --git a/third_party/WebKit/Source/web/tests/FrameTestHelpers.h b/third_party/WebKit/Source/web/tests/FrameTestHelpers.h |
index eaadcac7d7d09a7a698019190961e8c10243e710..067e7fa5bb2170dcd40172540d60fbf3a1ba0bdb 100644 |
--- a/third_party/WebKit/Source/web/tests/FrameTestHelpers.h |
+++ b/third_party/WebKit/Source/web/tests/FrameTestHelpers.h |
@@ -42,9 +42,9 @@ |
#include "public/web/WebRemoteFrameClient.h" |
#include "public/web/WebViewClient.h" |
#include "web/WebViewImpl.h" |
-#include "wtf/PassOwnPtr.h" |
#include <gmock/gmock.h> |
#include <gtest/gtest.h> |
+#include <memory> |
#include <string> |
namespace blink { |
@@ -134,7 +134,7 @@ public: |
WebWidgetClient* widgetClient() { return this; } |
private: |
- OwnPtr<WebLayerTreeView> m_layerTreeView; |
+ std::unique_ptr<WebLayerTreeView> m_layerTreeView; |
bool m_animationScheduled; |
}; |