| 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 73c35b420e2c8b85d818fa42363e799d60447bb3..07836526e34fbc6b10560e8bfe291d7ce2486c8d 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 "wtf/OwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -83,8 +83,8 @@ private:
|
| bool m_originalDeviceSupportsMouse;
|
| bool m_originalDeviceSupportsTouch;
|
| int m_originalMaxTouchPoints;
|
| - OwnPtr<IntPoint> m_lastPinchAnchorCss;
|
| - OwnPtr<IntPoint> m_lastPinchAnchorDip;
|
| + std::unique_ptr<IntPoint> m_lastPinchAnchorCss;
|
| + std::unique_ptr<IntPoint> m_lastPinchAnchorDip;
|
|
|
| bool m_embedderScriptEnabled;
|
| bool m_scriptExecutionDisabled;
|
|
|