Index: ash/wm/workspace/workspace_layout_manager2_unittest.cc |
diff --git a/ash/wm/workspace/workspace_layout_manager2_unittest.cc b/ash/wm/workspace/workspace_layout_manager2_unittest.cc |
index b559a3c70fda4c47f9832f6596523f5991e47532..13496f00c3e257d2f9cddca55e4288f3e1d109ea 100644 |
--- a/ash/wm/workspace/workspace_layout_manager2_unittest.cc |
+++ b/ash/wm/workspace/workspace_layout_manager2_unittest.cc |
@@ -13,9 +13,7 @@ |
#include "ui/aura/root_window.h" |
#include "ui/aura/test/test_windows.h" |
#include "ui/aura/window.h" |
-#include "ui/gfx/display.h" |
#include "ui/gfx/insets.h" |
-#include "ui/gfx/screen.h" |
namespace ash { |
@@ -147,15 +145,14 @@ TEST_F(WorkspaceLayoutManager2Test, SizeToWorkArea) { |
100, 101, work_area.width() + 1, work_area.height() + 2); |
scoped_ptr<aura::Window> window(CreateTestWindow(window_bounds)); |
EXPECT_EQ(gfx::Rect(gfx::Point(100, 101), work_area).ToString(), |
- window->bounds().ToString()); |
+ window->bounds().ToString()); |
// Directly setting the bounds triggers a slightly different code path. Verify |
// that too. |
window->SetBounds(window_bounds); |
EXPECT_EQ(gfx::Rect(gfx::Point(100, 101), work_area).ToString(), |
- window->bounds().ToString()); |
+ window->bounds().ToString()); |
} |
} // namespace |
- |
} // namespace ash |