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. |