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

Unified Diff: third_party/WebKit/Source/core/testing/Internals.cpp

Issue 2956023004: Add a flag to update hover effect when a layout is changed (Closed)
Patch Set: hover layout Created 3 years, 6 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/testing/Internals.cpp
diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
index a05e0b21a67da0b0c71151b3db4d1ce9085a0935..9ee3e823e8a782a895eb47058839ba430ea2418e 100644
--- a/third_party/WebKit/Source/core/testing/Internals.cpp
+++ b/third_party/WebKit/Source/core/testing/Internals.cpp
@@ -2751,6 +2751,13 @@ bool Internals::cursorUpdatePending() const {
return GetFrame()->GetEventHandler().CursorUpdatePending();
}
+bool Internals::fakeMouseMovePending() const {
+ if (!GetFrame())
+ return false;
+
+ return GetFrame()->GetEventHandler().FakeMouseMovePending();
+}
+
DOMArrayBuffer* Internals::serializeObject(
PassRefPtr<SerializedScriptValue> value) const {
StringView view = value->GetWireData();

Powered by Google App Engine
This is Rietveld 408576698