1// Copyright (c) 2012 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_ASH_TABS_DOCK_INFO_ASH_H_
6#define CHROME_BROWSER_UI_ASH_TABS_DOCK_INFO_ASH_H_
7
8#include "chrome/browser/ui/host_desktop.h"
9#include "chrome/browser/ui/tabs/dock_info.h"
10#include "ui/gfx/native_widget_types.h"
11
12#include <set>
13
14namespace chrome {
15namespace ash {
16
17DockInfo GetDockInfoAtPointAsh(
18    const gfx::Point& screen_point, const std::set<gfx::NativeView>& ignore);
19
20gfx::NativeView GetLocalProcessWindowAtPointAsh(
21    const gfx::Point& screen_point,
22    const std::set<gfx::NativeView>& ignore);
23
24}  // namespace ash
25}  // namespace chrome
26
27#endif  // CHROME_BROWSER_UI_ASH_TABS_DOCK_INFO_ASH_H_
28