Index: views/widget/native_widget_aura.cc |
=================================================================== |
--- views/widget/native_widget_aura.cc (revision 106345) |
+++ views/widget/native_widget_aura.cc (working copy) |
@@ -495,6 +495,11 @@ |
} |
bool NativeWidgetAura::OnKeyEvent(aura::KeyEvent* event) { |
+ // TODO(beng): Need an InputMethodAura to properly handle character events. |
+ // Right now, we just skip these. |
+ if (event->is_char()) |
+ return false; |
+ |
DCHECK(window_->IsVisible()); |
InputMethod* input_method = GetWidget()->GetInputMethod(); |
DCHECK(input_method); |