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

Unified Diff: extensions/browser/guest_view/guest_view_base.cc

Issue 872843002: GuestView: Fix unhandled keyboard events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/guest_view/guest_view_base.cc
diff --git a/extensions/browser/guest_view/guest_view_base.cc b/extensions/browser/guest_view/guest_view_base.cc
index 05600725652ebc6756628264b501d731294c3067..7b087e12d260cf93e02fa80ae1df0a87d8e2498e 100644
--- a/extensions/browser/guest_view/guest_view_base.cc
+++ b/extensions/browser/guest_view/guest_view_base.cc
@@ -539,8 +539,8 @@ void GuestViewBase::HandleKeyboardEvent(
return;
// Send the keyboard events back to the embedder to reprocess them.
- embedder_web_contents()->GetDelegate()->HandleKeyboardEvent(web_contents(),
- event);
+ embedder_web_contents()->GetDelegate()->
+ HandleKeyboardEvent(embedder_web_contents(), event);
}
void GuestViewBase::RunFileChooser(WebContents* web_contents,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698