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

Unified Diff: third_party/WebKit/Source/core/input/EventHandler.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/input/EventHandler.h
diff --git a/third_party/WebKit/Source/core/input/EventHandler.h b/third_party/WebKit/Source/core/input/EventHandler.h
index 983b92df000d798d470314099e95d53d680101cb..861269292b4616c92365b254c2b8831a3190c524 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.h
+++ b/third_party/WebKit/Source/core/input/EventHandler.h
@@ -109,6 +109,9 @@ class CORE_EXPORT EventHandler final
const LayoutSize& padding = LayoutSize());
bool mousePressed() const { return m_mouseEventManager->mousePressed(); }
+ bool isMousePositionUnknown() const {
+ return m_mouseEventManager->isMousePositionUnknown();
+ }
void setCapturingMouseEventsNode(
Node*); // A caller is responsible for resetting capturing node to 0.

Powered by Google App Engine
This is Rietveld 408576698