Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1017)

Side by Side Diff: third_party/WebKit/Source/web/DevToolsEmulator.h

Issue 2536723007: Removed android scrolling fake mouse moves and device_supports_mouse (Closed)
Patch Set: Made checks mirror what previous logic Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_originalTouchEventAPIEnabled; 112 bool m_originalTouchEventAPIEnabled;
113 bool m_originalDeviceSupportsMouse;
114 bool m_originalDeviceSupportsTouch; 113 bool m_originalDeviceSupportsTouch;
115 int m_originalMaxTouchPoints; 114 int m_originalMaxTouchPoints;
116 std::unique_ptr<IntPoint> m_lastPinchAnchorCss; 115 std::unique_ptr<IntPoint> m_lastPinchAnchorCss;
117 std::unique_ptr<IntPoint> m_lastPinchAnchorDip; 116 std::unique_ptr<IntPoint> m_lastPinchAnchorDip;
118 117
119 bool m_embedderScriptEnabled; 118 bool m_embedderScriptEnabled;
120 bool m_scriptExecutionDisabled; 119 bool m_scriptExecutionDisabled;
121 }; 120 };
122 121
123 } // namespace blink 122 } // namespace blink
124 123
125 #endif 124 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698