| Index: chrome/browser/ui/views/tabs/window_finder_chromeos.cc
|
| diff --git a/chrome/browser/ui/views/tabs/window_finder_chromeos.cc b/chrome/browser/ui/views/tabs/window_finder_chromeos.cc
|
| index c84a727935b4dde81b9dc7957ba759ea0a675ab3..175615cf6035dd8b1727df89efb825b48eab8f76 100644
|
| --- a/chrome/browser/ui/views/tabs/window_finder_chromeos.cc
|
| +++ b/chrome/browser/ui/views/tabs/window_finder_chromeos.cc
|
| @@ -7,13 +7,13 @@
|
| #include "chrome/browser/ui/host_desktop.h"
|
| #include "ui/aura/window.h"
|
|
|
| -aura::Window* GetLocalProcessWindowAtPointAsh(
|
| +gfx::NativeWindow GetLocalProcessWindowAtPointAsh(
|
| const gfx::Point& screen_point,
|
| - const std::set<aura::Window*>& ignore);
|
| + const std::set<gfx::NativeWindow>& ignore);
|
|
|
| -aura::Window* GetLocalProcessWindowAtPoint(
|
| +gfx::NativeWindow GetLocalProcessWindowAtPoint(
|
| chrome::HostDesktopType host_desktop_type,
|
| const gfx::Point& screen_point,
|
| - const std::set<aura::Window*>& ignore) {
|
| + const std::set<gfx::NativeWindow>& ignore) {
|
| return GetLocalProcessWindowAtPointAsh(screen_point, ignore);
|
| }
|
|
|