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

Unified Diff: services/ui/ws/window_finder.cc

Issue 2118383002: mus: Disregard windows that explicitly set can_accept_events to be false when sending events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comments Created 4 years, 5 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
« no previous file with comments | « services/ui/ws/test_utils.h ('k') | services/ui/ws/window_finder_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ws/window_finder.cc
diff --git a/services/ui/ws/window_finder.cc b/services/ui/ws/window_finder.cc
index 09be99308ce1fe50dcfc4282af6331da7f931549..0b46df6a0acbc3763aa4e0ba04e091e96f62993a 100644
--- a/services/ui/ws/window_finder.cc
+++ b/services/ui/ws/window_finder.cc
@@ -26,9 +26,12 @@ bool IsValidWindowForEvents(ServerWindow* window) {
ServerWindow* FindDeepestVisibleWindowForEvents(ServerWindow* window,
gfx::Point* location) {
+ if (!window->can_accept_events())
+ return nullptr;
+
const ServerWindow::Windows& children = window->children();
for (ServerWindow* child : base::Reversed(children)) {
- if (!child->visible())
+ if (!child->visible() || !child->can_accept_events())
continue;
// TODO(sky): support transform.
« no previous file with comments | « services/ui/ws/test_utils.h ('k') | services/ui/ws/window_finder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698