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

Unified Diff: content/renderer/pepper/pepper_plugin_instance_impl.cc

Issue 2621303004: Keep track of coalesced events in main thread event queue (Closed)
Patch Set: Rebase 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
« no previous file with comments | « content/renderer/input/render_widget_input_handler.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/pepper_plugin_instance_impl.cc
diff --git a/content/renderer/pepper/pepper_plugin_instance_impl.cc b/content/renderer/pepper/pepper_plugin_instance_impl.cc
index 2e19b69a9fc8934fc2c9e949dc86a4d2140e802b..520892b27fc2eedcec5847bd52eb1907650e6404 100644
--- a/content/renderer/pepper/pepper_plugin_instance_impl.cc
+++ b/content/renderer/pepper/pepper_plugin_instance_impl.cc
@@ -2242,7 +2242,7 @@ void PepperPluginInstanceImpl::SimulateInputEvent(
for (std::vector<std::unique_ptr<WebInputEvent>>::iterator it =
events.begin();
it != events.end(); ++it) {
- widget->handleInputEvent(*it->get());
+ widget->handleInputEvent(blink::WebCoalescedInputEvent(*it->get()));
}
}
« no previous file with comments | « content/renderer/input/render_widget_input_handler.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698