mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 14bd12d6 (#333041)
- Remove CefNavigationEntry::GetFrameName() (see http://crbug.com/477150#c5). - Devirtualize base::BindState (see http://crbug.com/486594). - Move Tuple to the base namespace.
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
diff --git input_method_win.cc input_method_win.cc
|
||||
index 6961683..1f8c4b2 100644
|
||||
index 29413f5..e1e2bd0 100644
|
||||
--- input_method_win.cc
|
||||
+++ input_method_win.cc
|
||||
@@ -601,7 +601,9 @@ bool InputMethodWin::IsWindowFocused(const TextInputClient* client) const {
|
||||
@@ -571,8 +571,9 @@ bool InputMethodWin::IsWindowFocused(const TextInputClient* client) const {
|
||||
// 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.
|
||||
- return attached_window_handle && GetActiveWindow() == attached_window_handle;
|
||||
+ // With CEF |attached_window_handle| may be a child window.
|
||||
+ return attached_window_handle &&
|
||||
+ GetActiveWindow() == ::GetAncestor(attached_window_handle, GA_ROOT);
|
||||
+ // 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);
|
||||
}
|
||||
|
||||
bool InputMethodWin::DispatchFabricatedKeyEvent(const ui::KeyEvent& event) {
|
||||
|
Reference in New Issue
Block a user