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 #include "chrome/browser/ui/views/tabs/window_finder.h" |
| 6 |
| 7 #include "chrome/browser/ui/host_desktop.h" |
| 8 #include "ui/aura/window.h" |
| 9 |
| 10 gfx::NativeWindow GetLocalProcessWindowAtPointImpl( |
| 11 const gfx::Point& screen_point, |
| 12 const std::set<gfx::NativeWindow>& ignore, |
| 13 gfx::NativeWindow window); |
| 14 |
| 15 gfx::NativeWindow GetLocalProcessWindowAtPoint( |
| 16 chrome::HostDesktopType host_desktop_type, |
| 17 const gfx::Point& screen_point, |
| 18 const std::set<gfx::NativeWindow>& ignore, |
| 19 gfx::NativeWindow dragged_window) { |
| 20 DCHECK(dragged_window); |
| 21 gfx::NativeWindow window = dragged_window->GetRootWindow(); |
| 22 return GetLocalProcessWindowAtPointImpl(screen_point, ignore, window); |
| 23 } |
OLD | NEW |