OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_X11_TOPMOST_WINDOW_FINDER_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_X11_TOPMOST_WINDOW_FINDER_H_ |
6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_X11_TOPMOST_WINDOW_FINDER_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_X11_TOPMOST_WINDOW_FINDER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "ui/base/x/x11_util.h" | 10 #include "ui/base/x/x11_util.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 // |ignore|. Returns NULL if the topmost window at |screen_loc| does not | 28 // |ignore|. Returns NULL if the topmost window at |screen_loc| does not |
29 // belong to Chrome. | 29 // belong to Chrome. |
30 aura::Window* FindLocalProcessWindowAt(const gfx::Point& screen_loc, | 30 aura::Window* FindLocalProcessWindowAt(const gfx::Point& screen_loc, |
31 const std::set<aura::Window*>& ignore); | 31 const std::set<aura::Window*>& ignore); |
32 | 32 |
33 // Returns the topmost window at |screen_loc|. | 33 // Returns the topmost window at |screen_loc|. |
34 XID FindWindowAt(const gfx::Point& screen_loc); | 34 XID FindWindowAt(const gfx::Point& screen_loc); |
35 | 35 |
36 private: | 36 private: |
37 // ui::EnumerateWindowsDelegate: | 37 // ui::EnumerateWindowsDelegate: |
38 virtual bool ShouldStopIterating(XID xid) OVERRIDE; | 38 virtual bool ShouldStopIterating(XID xid) override; |
39 | 39 |
40 // Returns true if |window| does not not belong to |ignore|, is visible and | 40 // Returns true if |window| does not not belong to |ignore|, is visible and |
41 // contains |screen_loc_|. | 41 // contains |screen_loc_|. |
42 bool ShouldStopIteratingAtLocalProcessWindow(aura::Window* window); | 42 bool ShouldStopIteratingAtLocalProcessWindow(aura::Window* window); |
43 | 43 |
44 gfx::Point screen_loc_; | 44 gfx::Point screen_loc_; |
45 std::set<aura::Window*> ignore_; | 45 std::set<aura::Window*> ignore_; |
46 XID toplevel_; | 46 XID toplevel_; |
47 | 47 |
48 DISALLOW_COPY_AND_ASSIGN(X11TopmostWindowFinder); | 48 DISALLOW_COPY_AND_ASSIGN(X11TopmostWindowFinder); |
49 }; | 49 }; |
50 | 50 |
51 } // namespace | 51 } // namespace |
52 | 52 |
53 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_X11_TOPMOST_WINDOW_FINDER_H_ | 53 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_X11_TOPMOST_WINDOW_FINDER_H_ |
OLD | NEW |