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

Unified Diff: Source/web/WebPopupMenuImpl.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/WebPopupMenuImpl.cpp
diff --git a/Source/web/WebPopupMenuImpl.cpp b/Source/web/WebPopupMenuImpl.cpp
index f3434ec489e03b1ea0d6667d9d9e7e70baed4716..85e820de56efb62838dd5d8bbcc3eb4485d6a6f9 100644
--- a/Source/web/WebPopupMenuImpl.cpp
+++ b/Source/web/WebPopupMenuImpl.cpp
@@ -159,7 +159,7 @@ bool WebPopupMenuImpl::handleTouchEvent(const WebTouchEvent& event)
bool WebPopupMenuImpl::handleKeyEvent(const WebKeyboardEvent& event)
{
- return m_widget->handleKeyEvent(PlatformKeyboardEventBuilder(event));
+ return m_widget->handleKeyEvent(PlatformKeyboardEventBuilder(m_widget, event));
}
// WebWidget -------------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698