OLD | NEW |
| (Empty) |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_IMPL_H_ | |
6 #define CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_IMPL_H_ | |
7 | |
8 #include <set> | |
9 | |
10 #include "ui/gfx/native_widget_types.h" | |
11 | |
12 namespace gfx { | |
13 class Point; | |
14 } | |
15 | |
16 gfx::NativeWindow GetLocalProcessWindowAtPointImpl( | |
17 const gfx::Point& screen_point, | |
18 const std::set<gfx::NativeWindow>& ignore, | |
19 const std::set<int>& ignore_ids, | |
20 gfx::NativeWindow window); | |
21 | |
22 #endif // CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_IMPL_H_ | |
OLD | NEW |