From 96b667d273c25e55150785848942c51f1a98851b Mon Sep 17 00:00:00 2001 From: "ben@chromium.org" Date: Tue, 14 Oct 2008 20:58:44 +0000 Subject: Change all ConvertPointTo* methods to use gfx::Point instead of CPoint. http://crbug.com/2186 Review URL: http://codereview.chromium.org/7317 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3365 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/views/root_view_drop_target.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'chrome/views/root_view_drop_target.h') diff --git a/chrome/views/root_view_drop_target.h b/chrome/views/root_view_drop_target.h index 4c100c5..8764689 100644 --- a/chrome/views/root_view_drop_target.h +++ b/chrome/views/root_view_drop_target.h @@ -12,6 +12,10 @@ #include "base/base_drop_target.h" #include "chrome/common/os_exchange_data.h" +namespace gfx { +class Point; +} + namespace ChromeViews { class RootView; @@ -51,7 +55,7 @@ class RootViewDropTarget : public BaseDropTarget { // the coordinate system of the rootview. This tries to avoid continually // querying CanDrop by returning target_view_ if the mouse is still over // target_view_. - View* CalculateTargetView(const CPoint& root_view_location, + View* CalculateTargetView(const gfx::Point& root_view_location, const OSExchangeData& data); // RootView we were created for. -- cgit v1.1