Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(734)

Side by Side Diff: chrome/browser/ui/views/tabs/window_finder_impl.h

Issue 1421083003: Introduces window_finder_android.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reviews Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 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.
13 class Window;
14 }
15 namespace gfx {
16 class Point;
17 }
18
19 gfx::NativeWindow GetLocalProcessWindowAtPointImpl(
20 const gfx::Point& screen_point,
21 const std::set<gfx::NativeWindow>& ignore,
22 const std::set<int>& ignore_ids,
23 gfx::NativeWindow window);
24
25 #endif // CHROME_BROWSER_UI_VIEWS_TABS_WINDOW_FINDER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698