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

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: rebase 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 c2ee3de569be2a48872ee2ed5495b9995606ecab..6de6953397e1b440fb800a8ee51a21be87a70dd1 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.h
+++ b/third_party/WebKit/Source/core/input/EventHandler.h
@@ -107,7 +107,10 @@ class CORE_EXPORT EventHandler final
const LayoutSize& padding = LayoutSize());
bool mousePressed() const { return m_mouseEventManager->mousePressed(); }
-
+ bool isMousePositionUnknown() const {
+ return m_mouseEventManager->isMousePositionUnknown();
+ }
+ void clearMouseEventManager() const { m_mouseEventManager->clear(); }
void setCapturingMouseEventsNode(
Node*); // A caller is responsible for resetting capturing node to 0.
« no previous file with comments | « third_party/WebKit/Source/core/frame/Settings.in ('k') | third_party/WebKit/Source/core/input/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698