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

Unified Diff: third_party/WebKit/Source/core/input/EventHandler.h

Issue 2956023004: Add a flag to update hover effect when a layout is changed (Closed)
Patch Set: add hover flag Created 3 years, 5 months 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 3b6ee77710df22915610b762ed52406e1aa32728..9ad2b65d24b2282d20e0f0689afa461072837098 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.h
+++ b/third_party/WebKit/Source/core/input/EventHandler.h
@@ -97,7 +97,7 @@ class CORE_EXPORT EventHandler final
void StopAutoscroll();
- void DispatchFakeMouseMoveEventSoon();
+ void DispatchFakeMouseMoveEventSoon(MouseEventManager::FakeMouseMoveReason);
void DispatchFakeMouseMoveEventSoonInQuad(const FloatQuad&);
HitTestResult HitTestResultAtPoint(
@@ -126,6 +126,10 @@ class CORE_EXPORT EventHandler final
// testing.
bool CursorUpdatePending();
+ // Return whether sending a fake mouse move is currently pending. Used for
+ // testing.
+ bool FakeMouseMovePending() const;
Navid Zolghadr 2017/07/05 17:37:33 I wonder if there is a macro when building the tes
lanwei 2017/07/06 03:04:34 Sorry, I did not find a macro for testing.
Navid Zolghadr 2017/07/06 15:06:47 I couldn't find any existing one either. Dave, do
Navid Zolghadr 2017/07/06 15:26:44 Nevermind. There are already other testing only AP
dtapuska 2017/07/07 19:59:33 No we generally don't care for ifdef's.. Just add
+
void SetResizingFrameSet(HTMLFrameSetElement*);
void ResizeScrollableAreaDestroyed();

Powered by Google App Engine
This is Rietveld 408576698