summaryrefslogtreecommitdiffstats
path: root/chrome/browser/dock_info.h
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-19 15:58:37 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-19 15:58:37 +0000
commit1035b5944021ed967c8f987a176ff4fcdfcfabe3 (patch)
treee03b225d71f4d254487f836de406e01a529ba6d1 /chrome/browser/dock_info.h
parentb7ee52fdb77d6190147bd98c0e3acaafc79bab39 (diff)
downloadchromium_src-1035b5944021ed967c8f987a176ff4fcdfcfabe3.zip
chromium_src-1035b5944021ed967c8f987a176ff4fcdfcfabe3.tar.gz
chromium_src-1035b5944021ed967c8f987a176ff4fcdfcfabe3.tar.bz2
Makes dragged_tab_controller compiler on linux. I'm not adding this to
the gyp file yet as BrowserView needs to be made compilable before I turn this on. BUG=none TEST=none Review URL: http://codereview.chromium.org/113562 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16378 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/dock_info.h')
-rw-r--r--chrome/browser/dock_info.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/dock_info.h b/chrome/browser/dock_info.h
index 158f324..a2beccb 100644
--- a/chrome/browser/dock_info.h
+++ b/chrome/browser/dock_info.h
@@ -27,11 +27,11 @@ class DockInfo {
public:
virtual DockInfo GetDockInfoAtPoint(
const gfx::Point& screen_point,
- const std::set<gfx::NativeWindow>& ignore) = 0;
+ const std::set<gfx::NativeView>& ignore) = 0;
virtual gfx::NativeWindow GetLocalProcessWindowAtPoint(
const gfx::Point& screen_point,
- const std::set<gfx::NativeWindow>& ignore) = 0;
+ const std::set<gfx::NativeView>& ignore) = 0;
};
// Possible dock positions.
@@ -89,7 +89,7 @@ class DockInfo {
// If a Factory has been set, the method of the same name is invoked on the
// Factory to determine the DockInfo.
static DockInfo GetDockInfoAtPoint(const gfx::Point& screen_point,
- const std::set<gfx::NativeWindow>& ignore);
+ const std::set<gfx::NativeView>& ignore);
// Returns the top most window from the current process at |screen_point|.
// See GetDockInfoAtPoint for a description of |ignore|. This returns NULL if
@@ -100,7 +100,7 @@ class DockInfo {
// Factory to determine the DockInfo.
static gfx::NativeWindow GetLocalProcessWindowAtPoint(
const gfx::Point& screen_point,
- const std::set<gfx::NativeWindow>& ignore);
+ const std::set<gfx::NativeView>& ignore);
// Returns true if this DockInfo is valid for the specified point. This
// resets in_enable_area based on the new location.