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

Unified Diff: Source/web/WebPluginContainerImpl.cpp

Issue 663523002: Adding support for DOM3 KeyboardEvents Code in KeyboardEvents (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added new embedder API and code review comments update Created 5 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: Source/web/WebPluginContainerImpl.cpp
diff --git a/Source/web/WebPluginContainerImpl.cpp b/Source/web/WebPluginContainerImpl.cpp
index 00a1a68b60cb9e3eb71dbce1053c4864be946170..3d1878b270f9888d96d9b3cfd3abf82ad5f0dae2 100644
--- a/Source/web/WebPluginContainerImpl.cpp
+++ b/Source/web/WebPluginContainerImpl.cpp
@@ -828,7 +828,7 @@ void WebPluginContainerImpl::handleWheelEvent(WheelEvent* event)
void WebPluginContainerImpl::handleKeyboardEvent(KeyboardEvent* event)
{
- WebKeyboardEventBuilder webEvent(*event);
+ WebKeyboardEventBuilder webEvent(this, *event);
if (webEvent.type == WebInputEvent::Undefined)
return;

Powered by Google App Engine
This is Rietveld 408576698