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

Unified Diff: third_party/WebKit/Source/web/tests/ImeOnFocusTest.cpp

Issue 2621303004: Keep track of coalesced events in main thread event queue (Closed)
Patch Set: Keep coalesced events in main thread event queue unittests Created 3 years, 11 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/web/tests/ImeOnFocusTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/ImeOnFocusTest.cpp b/third_party/WebKit/Source/web/tests/ImeOnFocusTest.cpp
index 2d7d55249c36d9e96f959714635a9bb8d23ea9bc..2f786b3a900b173becb8f16b2a799ced63c4291a 100644
--- a/third_party/WebKit/Source/web/tests/ImeOnFocusTest.cpp
+++ b/third_party/WebKit/Source/web/tests/ImeOnFocusTest.cpp
@@ -76,7 +76,7 @@ void ImeOnFocusTest::sendGestureTap(WebView* webView, IntPoint clientPoint) {
webGestureEvent.data.tap.width = 10;
webGestureEvent.data.tap.height = 10;
- webView->handleInputEvent(webGestureEvent);
+ webView->handleInputEvent(WebCoalescedInputEvent(webGestureEvent));
runPendingTasks();
}

Powered by Google App Engine
This is Rietveld 408576698