Index: chrome/browser/views/bookmark_menu_button.cc |
=================================================================== |
--- chrome/browser/views/bookmark_menu_button.cc (revision 16052) |
+++ chrome/browser/views/bookmark_menu_button.cc (working copy) |
@@ -93,13 +93,13 @@ |
} |
void BookmarkMenuButton::RunMenu(views::View* source, |
- const CPoint& pt, |
+ const gfx::Point& pt, |
gfx::NativeView hwnd) { |
RunMenu(source, pt, hwnd, false); |
} |
void BookmarkMenuButton::RunMenu(views::View* source, |
- const CPoint& pt, |
+ const gfx::Point& pt, |
gfx::NativeView hwnd, |
bool for_drop) { |
Profile* profile = browser_->profile(); |
@@ -141,5 +141,5 @@ |
} |
void BookmarkMenuButton::ShowDropMenu() { |
- RunMenu(NULL, CPoint(), GetWidget()->GetNativeView(), true); |
+ RunMenu(NULL, gfx::Point(), GetWidget()->GetNativeView(), true); |
} |