| Index: athena/wm/split_view_controller_unittest.cc
|
| diff --git a/athena/wm/split_view_controller_unittest.cc b/athena/wm/split_view_controller_unittest.cc
|
| index c90a3cf6eef4b81d7dff9fbd265ac4fd3e9ccd6d..91e7ee5d357a79f697142236a470c0e8195b439c 100644
|
| --- a/athena/wm/split_view_controller_unittest.cc
|
| +++ b/athena/wm/split_view_controller_unittest.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "athena/screen/public/screen_manager.h"
|
| #include "athena/test/base/athena_test_base.h"
|
| -#include "athena/test/base/test_windows.h"
|
| #include "athena/wm/public/window_list_provider.h"
|
| #include "athena/wm/test/window_manager_impl_test_api.h"
|
| #include "base/memory/scoped_vector.h"
|
| @@ -103,7 +102,7 @@
|
| ScopedVector<aura::Window> windows;
|
| const int kNumWindows = 6;
|
| for (size_t i = 0; i < kNumWindows; ++i) {
|
| - scoped_ptr<aura::Window> window = test::CreateNormalWindow(NULL, NULL);
|
| + scoped_ptr<aura::Window> window = CreateTestWindow(NULL, gfx::Rect());
|
| windows.push_back(window.release());
|
| windows[i]->Hide();
|
| }
|
| @@ -195,7 +194,7 @@
|
| ScopedVector<aura::Window> windows;
|
| const int kNumWindows = 2;
|
| for (size_t i = 0; i < kNumWindows; ++i) {
|
| - scoped_ptr<aura::Window> window = test::CreateNormalWindow(NULL, NULL);
|
| + scoped_ptr<aura::Window> window = CreateTestWindow(NULL, gfx::Rect());
|
| windows.push_back(window.release());
|
| windows[i]->Hide();
|
| }
|
| @@ -291,7 +290,7 @@
|
| ScopedVector<aura::Window> windows;
|
| const int kNumWindows = 2;
|
| for (size_t i = 0; i < kNumWindows; ++i) {
|
| - scoped_ptr<aura::Window> window = test::CreateNormalWindow(NULL, NULL);
|
| + scoped_ptr<aura::Window> window = CreateTestWindow(NULL, gfx::Rect());
|
| window->Hide();
|
| windows.push_back(window.release());
|
| }
|
|
|