Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Unified Diff: ash/shell/keyboard_controller_proxy_stub.cc

Issue 1155013005: Refactoring the ownership of ui::InputMethod. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed bot failure: cast_shell_linux Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ash/shell/keyboard_controller_proxy_stub.cc
diff --git a/ash/shell/keyboard_controller_proxy_stub.cc b/ash/shell/keyboard_controller_proxy_stub.cc
index 220d69e63869e83648371202686c81e770d65290..f1e9fed397ad24e873d4c7a84a701dfa6e6e6966 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(
« no previous file with comments | « ash/shell.cc ('k') | ash/shell/shell_delegate_impl.cc » ('j') | ui/aura/window_tree_host.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698