| OLD | NEW | 
|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #ifndef DevToolsEmulator_h | 5 #ifndef DevToolsEmulator_h | 
| 6 #define DevToolsEmulator_h | 6 #define DevToolsEmulator_h | 
| 7 | 7 | 
| 8 #include "platform/heap/Handle.h" | 8 #include "platform/heap/Handle.h" | 
| 9 #include "public/platform/PointerProperties.h" | 9 #include "public/platform/PointerProperties.h" | 
| 10 #include "public/platform/WebFloatPoint.h" | 10 #include "public/platform/WebFloatPoint.h" | 
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 102   WebViewportStyle m_embedderViewportStyle; | 102   WebViewportStyle m_embedderViewportStyle; | 
| 103   bool m_embedderPluginsEnabled; | 103   bool m_embedderPluginsEnabled; | 
| 104   int m_embedderAvailablePointerTypes; | 104   int m_embedderAvailablePointerTypes; | 
| 105   PointerType m_embedderPrimaryPointerType; | 105   PointerType m_embedderPrimaryPointerType; | 
| 106   int m_embedderAvailableHoverTypes; | 106   int m_embedderAvailableHoverTypes; | 
| 107   HoverType m_embedderPrimaryHoverType; | 107   HoverType m_embedderPrimaryHoverType; | 
| 108   bool m_embedderMainFrameResizesAreOrientationChanges; | 108   bool m_embedderMainFrameResizesAreOrientationChanges; | 
| 109 | 109 | 
| 110   bool m_touchEventEmulationEnabled; | 110   bool m_touchEventEmulationEnabled; | 
| 111   bool m_doubleTapToZoomEnabled; | 111   bool m_doubleTapToZoomEnabled; | 
| 112   bool m_originalTouchEnabled; | 112   bool m_originalTouchEventAPIEnabled; | 
| 113   bool m_originalDeviceSupportsMouse; | 113   bool m_originalDeviceSupportsMouse; | 
| 114   bool m_originalDeviceSupportsTouch; | 114   bool m_originalDeviceSupportsTouch; | 
| 115   int m_originalMaxTouchPoints; | 115   int m_originalMaxTouchPoints; | 
| 116   std::unique_ptr<IntPoint> m_lastPinchAnchorCss; | 116   std::unique_ptr<IntPoint> m_lastPinchAnchorCss; | 
| 117   std::unique_ptr<IntPoint> m_lastPinchAnchorDip; | 117   std::unique_ptr<IntPoint> m_lastPinchAnchorDip; | 
| 118 | 118 | 
| 119   bool m_embedderScriptEnabled; | 119   bool m_embedderScriptEnabled; | 
| 120   bool m_scriptExecutionDisabled; | 120   bool m_scriptExecutionDisabled; | 
| 121 }; | 121 }; | 
| 122 | 122 | 
| 123 }  // namespace blink | 123 }  // namespace blink | 
| 124 | 124 | 
| 125 #endif | 125 #endif | 
| OLD | NEW | 
|---|