Index: extensions/shell/browser/shell_native_app_window.cc |
diff --git a/extensions/shell/browser/shell_native_app_window.cc b/extensions/shell/browser/shell_native_app_window.cc |
index a04ce4e98fa8a2b1098590ccc400bfbdd2375656..1a95635fd4a61b2c6803f016acebe26e01c7ecfd 100644 |
--- a/extensions/shell/browser/shell_native_app_window.cc |
+++ b/extensions/shell/browser/shell_native_app_window.cc |
@@ -149,6 +149,14 @@ void ShellNativeAppWindow::HandleKeyboardEvent( |
// No special handling. The WebContents will handle it. |
} |
+bool ShellNativeAppWindow::PreHandleKeyboardEvent( |
+ content::WebContents* source, |
+ const content::NativeWebKeyboardEvent& event, |
+ bool* is_keyboard_shortcut) { |
+ // No special handling. The WebContents will handle it. |
+ return false; |
+} |
+ |
bool ShellNativeAppWindow::IsFrameless() const { |
NOTIMPLEMENTED(); |
return false; |