summaryrefslogtreecommitdiffstats
path: root/ash/shell/keyboard_controller_proxy_stub.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ash/shell/keyboard_controller_proxy_stub.cc')
-rw-r--r--ash/shell/keyboard_controller_proxy_stub.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/ash/shell/keyboard_controller_proxy_stub.cc b/ash/shell/keyboard_controller_proxy_stub.cc
index 220d69e..f1e9fed 100644
--- a/ash/shell/keyboard_controller_proxy_stub.cc
+++ b/ash/shell/keyboard_controller_proxy_stub.cc
@@ -6,9 +6,10 @@
#include "ash/shell.h"
#include "ash/shell_delegate.h"
+#include "ash/wm/window_util.h"
#include "ui/aura/window.h"
+#include "ui/aura/window_tree_host.h"
#include "ui/base/ime/mock_input_method.h"
-#include "ui/wm/core/input_method_event_filter.h"
using namespace content;
@@ -36,7 +37,10 @@ aura::Window* KeyboardControllerProxyStub::GetKeyboardWindow() {
}
ui::InputMethod* KeyboardControllerProxyStub::GetInputMethod() {
- return Shell::GetInstance()->input_method_filter()->input_method();
+ aura::Window* active_window = wm::GetActiveWindow();
+ aura::Window* root_window = active_window ? active_window->GetRootWindow()
+ : Shell::GetPrimaryRootWindow();
+ return root_window->GetHost()->GetInputMethod();
}
void KeyboardControllerProxyStub::RequestAudioInput(