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

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

Issue 2479123003: WIP Add getCoalescedEvents API using vector of WebInputEvents (Closed)
Patch Set: Created 4 years, 1 month 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: 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 bc3dcd047cb7bb16014eec82ceed61d0e477aeba..448c264f38ae98a50a81925f5c1686e78d4eb58f 100644
--- a/content/renderer/pepper/pepper_plugin_instance_impl.cc
+++ b/content/renderer/pepper/pepper_plugin_instance_impl.cc
@@ -2212,7 +2212,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(*it->get(), std::vector<const WebInputEvent*>());
}
}

Powered by Google App Engine
This is Rietveld 408576698