2019-06-05 16:15:45 +02:00
|
|
|
diff --git ui/base/ime/win/input_method_win_base.cc ui/base/ime/win/input_method_win_base.cc
|
2020-03-30 22:13:42 +02:00
|
|
|
index 83850840d83b..3d5ffcc54f1e 100644
|
2019-06-05 16:15:45 +02:00
|
|
|
--- ui/base/ime/win/input_method_win_base.cc
|
|
|
|
+++ ui/base/ime/win/input_method_win_base.cc
|
2019-10-01 15:55:16 +02:00
|
|
|
@@ -263,8 +263,9 @@ bool InputMethodWinBase::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_ &&
|
2018-04-19 17:44:42 +02:00
|
|
|
- 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
|
|
|
|
2018-04-19 17:44:42 +02:00
|
|
|
LRESULT InputMethodWinBase::OnChar(HWND window_handle,
|