Index: third_party/WebKit/Source/web/DevToolsEmulator.h |
diff --git a/third_party/WebKit/Source/web/DevToolsEmulator.h b/third_party/WebKit/Source/web/DevToolsEmulator.h |
index 07836526e34fbc6b10560e8bfe291d7ce2486c8d..73c35b420e2c8b85d818fa42363e799d60447bb3 100644 |
--- a/third_party/WebKit/Source/web/DevToolsEmulator.h |
+++ b/third_party/WebKit/Source/web/DevToolsEmulator.h |
@@ -10,7 +10,7 @@ |
#include "public/platform/WebViewportStyle.h" |
#include "public/web/WebDeviceEmulationParams.h" |
#include "wtf/Forward.h" |
-#include <memory> |
+#include "wtf/OwnPtr.h" |
namespace blink { |
@@ -83,8 +83,8 @@ private: |
bool m_originalDeviceSupportsMouse; |
bool m_originalDeviceSupportsTouch; |
int m_originalMaxTouchPoints; |
- std::unique_ptr<IntPoint> m_lastPinchAnchorCss; |
- std::unique_ptr<IntPoint> m_lastPinchAnchorDip; |
+ OwnPtr<IntPoint> m_lastPinchAnchorCss; |
+ OwnPtr<IntPoint> m_lastPinchAnchorDip; |
bool m_embedderScriptEnabled; |
bool m_scriptExecutionDisabled; |