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 #include "chrome/browser/ui/views/tabs/window_finder.h" | 5 #include "chrome/browser/ui/views/tabs/window_finder.h" |
6 | 6 |
7 #import <AppKit/AppKit.h> | 7 #import <AppKit/AppKit.h> |
8 | 8 |
9 #include "ui/gfx/geometry/point.h" | 9 #include "ui/gfx/geometry/point.h" |
10 #import "ui/gfx/mac/coordinate_conversion.h" | 10 #import "ui/gfx/mac/coordinate_conversion.h" |
11 | 11 |
12 gfx::NativeWindow WindowFinder::GetLocalProcessWindowAtPoint( | 12 gfx::NativeWindow WindowFinder::GetLocalProcessWindowAtPointImpl( |
13 const gfx::Point& screen_point, | 13 const gfx::Point& screen_point, |
14 const std::set<gfx::NativeWindow>& ignore) { | 14 const std::set<gfx::NativeWindow>& ignore) { |
15 const NSPoint ns_point = gfx::ScreenPointToNSPoint(screen_point); | 15 const NSPoint ns_point = gfx::ScreenPointToNSPoint(screen_point); |
16 | 16 |
17 // Note: [NSApp orderedWindows] doesn't include NSPanels. | 17 // Note: [NSApp orderedWindows] doesn't include NSPanels. |
18 for (NSWindow* window : [NSApp orderedWindows]) { | 18 for (NSWindow* window : [NSApp orderedWindows]) { |
19 if (ignore.count(window)) | 19 if (ignore.count(window)) |
20 continue; | 20 continue; |
21 | 21 |
22 if (![window isOnActiveSpace]) | 22 if (![window isOnActiveSpace]) |
23 continue; | 23 continue; |
24 | 24 |
25 // NativeWidgetMac::Close() calls -orderOut: on NSWindows before actually | 25 // NativeWidgetMac::Close() calls -orderOut: on NSWindows before actually |
26 // closing them. | 26 // closing them. |
27 if (![window isVisible]) | 27 if (![window isVisible]) |
28 continue; | 28 continue; |
29 | 29 |
30 if (NSPointInRect(ns_point, [window frame])) | 30 if (NSPointInRect(ns_point, [window frame])) |
31 return window; | 31 return window; |
32 } | 32 } |
33 | 33 |
34 return nil; | 34 return nil; |
35 } | 35 } |
OLD | NEW |