diff options
Diffstat (limited to 'ash/wm/overview/window_selector_unittest.cc')
-rw-r--r-- | ash/wm/overview/window_selector_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ash/wm/overview/window_selector_unittest.cc b/ash/wm/overview/window_selector_unittest.cc index 52bca15..ae3d380 100644 --- a/ash/wm/overview/window_selector_unittest.cc +++ b/ash/wm/overview/window_selector_unittest.cc @@ -3,7 +3,7 @@ // found in the LICENSE file. #include "ash/root_window_controller.h" -#include "ash/screen_ash.h" +#include "ash/screen_util.h" #include "ash/shelf/shelf.h" #include "ash/shelf/shelf_widget.h" #include "ash/shell.h" @@ -172,7 +172,7 @@ class WindowSelectorTest : public test::AshTestBase { } gfx::RectF GetTransformedBounds(aura::Window* window) { - gfx::RectF bounds(ash::ScreenAsh::ConvertRectToScreen( + gfx::RectF bounds(ScreenUtil::ConvertRectToScreen( window->parent(), window->layer()->bounds())); gfx::Transform transform(GetTransformRelativeTo(bounds.origin(), window->layer()->transform())); @@ -181,7 +181,7 @@ class WindowSelectorTest : public test::AshTestBase { } gfx::RectF GetTransformedTargetBounds(aura::Window* window) { - gfx::RectF bounds(ash::ScreenAsh::ConvertRectToScreen( + gfx::RectF bounds(ScreenUtil::ConvertRectToScreen( window->parent(), window->layer()->GetTargetBounds())); gfx::Transform transform(GetTransformRelativeTo(bounds.origin(), window->layer()->GetTargetTransform())); |