Index: chrome/browser/ui/views/tabs/dragged_tab_view.cc |
diff --git a/chrome/browser/ui/views/tabs/dragged_tab_view.cc b/chrome/browser/ui/views/tabs/dragged_tab_view.cc |
index 45b90dc62f53829f5168f7e5052dd00701dfe91d..49e14319020bc8e46a94bb171fa3e82db986c893 100644 |
--- a/chrome/browser/ui/views/tabs/dragged_tab_view.cc |
+++ b/chrome/browser/ui/views/tabs/dragged_tab_view.cc |
@@ -86,7 +86,7 @@ void DraggedTabView::MoveTo(const gfx::Point& screen_point) { |
SetWindowPos(container_->GetNativeView(), HWND_TOP, x, y, 0, 0, |
SWP_NOSIZE | SWP_NOACTIVATE | show_flags); |
#else |
- gfx::Rect bounds = container_->GetWindowScreenBounds(); |
+ gfx::Rect bounds = container_->GetWindowBoundsInScreen(); |
container_->SetBounds(gfx::Rect(x, y, bounds.width(), bounds.height())); |
if (!container_->IsVisible()) |
container_->Show(); |