| 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 466b6b5a5ed4b1b384ca8483dd79eb1ee1375898..4dea9a0535eb147813bbf6cfcbbc0e8318b575f5 100644
|
| --- a/third_party/WebKit/Source/core/testing/Internals.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| @@ -2732,6 +2732,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();
|
|
|