| Index: chrome/browser/ui/views/tabs/tab_strip.cc
|
| diff --git a/chrome/browser/ui/views/tabs/tab_strip.cc b/chrome/browser/ui/views/tabs/tab_strip.cc
|
| index 4cd155cb4640145e63b69a9b0d578d31a4d786ca..bd354886cb896594b1602ffb07c9d8e367f2bfe2 100644
|
| --- a/chrome/browser/ui/views/tabs/tab_strip.cc
|
| +++ b/chrome/browser/ui/views/tabs/tab_strip.cc
|
| @@ -29,7 +29,7 @@
|
| #include "views/window/window.h"
|
|
|
| #if defined(OS_WIN)
|
| -#include "app/win/win_util.h"
|
| +#include "views/widget/monitor_win.h"
|
| #include "views/widget/widget_win.h"
|
| #elif defined(OS_LINUX)
|
| #include "views/widget/widget_gtk.h"
|
| @@ -682,7 +682,7 @@ gfx::Rect TabStrip::GetDropBounds(int drop_index,
|
|
|
| // If the rect doesn't fit on the monitor, push the arrow to the bottom.
|
| #if defined(OS_WIN)
|
| - gfx::Rect monitor_bounds = app::win::GetMonitorBoundsForRect(drop_bounds);
|
| + gfx::Rect monitor_bounds = views::GetMonitorBoundsForRect(drop_bounds);
|
| *is_beneath = (monitor_bounds.IsEmpty() ||
|
| !monitor_bounds.Contains(drop_bounds));
|
| #else
|
|
|