| Index: content/shell/browser/shell_platform_data_aura.cc | 
| diff --git a/content/shell/browser/shell_platform_data_aura.cc b/content/shell/browser/shell_platform_data_aura.cc | 
| index e7a129032ec61dd8bd1b8940d3150d04237c2734..ff9eb91c853e0f45834ac1810de9708ba826849d 100644 | 
| --- a/content/shell/browser/shell_platform_data_aura.cc | 
| +++ b/content/shell/browser/shell_platform_data_aura.cc | 
| @@ -94,21 +94,10 @@ class MinimalInputEventFilter : public ui::internal::InputMethodDelegate, | 
| } | 
| } | 
|  | 
| -  // ui::InputMethodDelegate: | 
| -  virtual bool DispatchKeyEventPostIME( | 
| -      const base::NativeEvent& event) OVERRIDE { | 
| -    ui::TranslatedKeyEvent aura_event(event, false /* is_char */); | 
| -    return root_->AsWindowTreeHostDelegate()->OnHostKeyEvent( | 
| -        &aura_event); | 
| -  } | 
| - | 
| -  virtual bool DispatchFabricatedKeyEventPostIME(ui::EventType type, | 
| -                                                 ui::KeyboardCode key_code, | 
| -                                                 int flags) OVERRIDE { | 
| -    ui::TranslatedKeyEvent aura_event(type == ui::ET_KEY_PRESSED, key_code, | 
| -                                      flags); | 
| -    return root_->AsWindowTreeHostDelegate()->OnHostKeyEvent( | 
| -        &aura_event); | 
| +  // ui::internal::InputMethodDelegate: | 
| +  virtual bool DispatchKeyEventPostIME(const ui::KeyEvent& event) OVERRIDE { | 
| +    ui::TranslatedKeyEvent aura_event(event); | 
| +    return root_->AsWindowTreeHostDelegate()->OnHostKeyEvent(&aura_event); | 
| } | 
|  | 
| aura::RootWindow* root_; | 
|  |