Chromium Code Reviews| Index: chrome/browser/ui/views/tabs/window_finder_impl.h |
| diff --git a/chrome/browser/ui/views/tabs/window_finder_impl.h b/chrome/browser/ui/views/tabs/window_finder_impl.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..34fa2316c45772d64ee9ed3f25da1012c310a58a |
| --- /dev/null |
| +++ b/chrome/browser/ui/views/tabs/window_finder_impl.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_IMPL_H_ |
| +#define CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_IMPL_H_ |
| + |
| +#include <set> |
| + |
| +#include "ui/gfx/native_widget_types.h" |
| + |
| +namespace aura { |
|
sky
2015/11/09 03:35:03
You should be able to remove this forward declarat
bshe
2015/11/09 18:25:36
Done.
|
| +class Window; |
| +} |
| +namespace gfx { |
| +class Point; |
| +} |
| + |
| +gfx::NativeWindow GetLocalProcessWindowAtPointImpl( |
| + const gfx::Point& screen_point, |
| + const std::set<gfx::NativeWindow>& ignore, |
| + const std::set<int>& ignore_ids, |
| + gfx::NativeWindow window); |
| + |
| +#endif // CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_IMPL_H_ |