Index: ui/views/widget/desktop_aura/desktop_root_window_host_win.cc |
diff --git a/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc b/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc |
index 52b1b506f46b5cfc206d776067c92f40fade5306..0949df7fd1aa183703c34f3514bd6ecdce0126a3 100644 |
--- a/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc |
+++ b/ui/views/widget/desktop_aura/desktop_root_window_host_win.cc |
@@ -28,7 +28,6 @@ |
#include "ui/views/corewm/focus_controller.h" |
#include "ui/views/corewm/input_method_event_filter.h" |
#include "ui/views/corewm/window_animations.h" |
-#include "ui/views/ime/input_method_bridge.h" |
#include "ui/views/widget/desktop_aura/desktop_activation_client.h" |
#include "ui/views/widget/desktop_aura/desktop_cursor_loader_updater.h" |
#include "ui/views/widget/desktop_aura/desktop_dispatcher_client.h" |
@@ -379,13 +378,6 @@ void DesktopRootWindowHostWin::FlashFrame(bool flash_frame) { |
message_handler_->FlashFrame(flash_frame); |
} |
-void DesktopRootWindowHostWin::OnNativeWidgetFocus() { |
- // HWNDMessageHandler will perform the proper updating on its own. |
-} |
- |
-void DesktopRootWindowHostWin::OnNativeWidgetBlur() { |
-} |
- |
//////////////////////////////////////////////////////////////////////////////// |
// DesktopRootWindowHostWin, RootWindowHost implementation: |
@@ -761,16 +753,10 @@ void DesktopRootWindowHostWin::HandleFrameChanged() { |
void DesktopRootWindowHostWin::HandleNativeFocus(HWND last_focused_window) { |
// TODO(beng): inform the native_widget_delegate_. |
- InputMethod* input_method = GetInputMethod(); |
- if (input_method) |
- input_method->OnFocus(); |
} |
void DesktopRootWindowHostWin::HandleNativeBlur(HWND focused_window) { |
// TODO(beng): inform the native_widget_delegate_. |
- InputMethod* input_method = GetInputMethod(); |
- if (input_method) |
- input_method->OnBlur(); |
} |
bool DesktopRootWindowHostWin::HandleMouseEvent(const ui::MouseEvent& event) { |