| 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();
|
|
|