2017-04-27 03:59:52 +02:00
|
|
|
diff --git ui/base/ime/input_method_win.cc ui/base/ime/input_method_win.cc
|
2018-02-15 01:12:09 +01:00
|
|
|
index 06f8831222dd..68297ba47dd3 100644
|
2017-04-27 03:59:52 +02:00
|
|
|
--- ui/base/ime/input_method_win.cc
|
|
|
|
+++ ui/base/ime/input_method_win.cc
|
2018-02-15 01:12:09 +01:00
|
|
|
@@ -685,8 +685,9 @@ bool InputMethodWin::IsWindowFocused(const TextInputClient* client) const {
|
2015-04-24 17:33:27 +02:00
|
|
|
// receiving keyboard input as long as it is an active window. This works well
|
|
|
|
// even when the |attached_window_handle| becomes active but has not received
|
|
|
|
// WM_FOCUS yet.
|
2015-06-06 00:06:48 +02:00
|
|
|
+ // With CEF |toplevel_window_handle_| may be a child window.
|
|
|
|
return toplevel_window_handle_ &&
|
|
|
|
- GetActiveWindow() == toplevel_window_handle_;
|
|
|
|
+ GetActiveWindow() == ::GetAncestor(toplevel_window_handle_, GA_ROOT);
|
2015-04-24 17:33:27 +02:00
|
|
|
}
|
2015-04-24 13:11:32 +02:00
|
|
|
|
2017-07-27 01:19:27 +02:00
|
|
|
ui::EventDispatchDetails InputMethodWin::DispatchFabricatedKeyEvent(
|