| Index: ash/mus/test/wm_test_helper.cc
|
| diff --git a/mash/wm/test/wm_test_helper.cc b/ash/mus/test/wm_test_helper.cc
|
| similarity index 79%
|
| rename from mash/wm/test/wm_test_helper.cc
|
| rename to ash/mus/test/wm_test_helper.cc
|
| index fdf1723496a3ff57fce3575a858cfb31c815640b..ab16f62f045d45229f4e3be51302e0510d30b0fe 100644
|
| --- a/mash/wm/test/wm_test_helper.cc
|
| +++ b/ash/mus/test/wm_test_helper.cc
|
| @@ -2,20 +2,19 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "mash/wm/test/wm_test_helper.h"
|
| +#include "ash/mus/test/wm_test_helper.h"
|
|
|
| +#include "ash/mus/root_window_controller.h"
|
| +#include "ash/mus/test/wm_test_screen.h"
|
| +#include "ash/mus/window_manager.h"
|
| +#include "ash/mus/window_manager_application.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "components/mus/public/cpp/property_type_converters.h"
|
| #include "components/mus/public/cpp/window_tree_client.h"
|
| -#include "mash/wm/root_window_controller.h"
|
| -#include "mash/wm/test/wm_test_screen.h"
|
| -#include "mash/wm/window_manager.h"
|
| -#include "mash/wm/window_manager.h"
|
| -#include "mash/wm/window_manager_application.h"
|
| #include "ui/display/display.h"
|
|
|
| -namespace mash {
|
| -namespace wm {
|
| +namespace ash {
|
| +namespace mus {
|
|
|
| WmTestHelper::WmTestHelper() {}
|
|
|
| @@ -44,11 +43,11 @@ void WmTestHelper::Init() {
|
| screen_->display_list()->AddDisplay(root_window_controller->display(),
|
| views::DisplayList::Type::PRIMARY);
|
|
|
| - window_tree_client_setup_.Init(
|
| - root_window_controller, root_window_controller->window_manager_.get());
|
| + window_tree_client_setup_.Init(root_window_controller,
|
| + root_window_controller->window_manager_.get());
|
| root_window_controller->root()->SetBounds(display_bounds);
|
| window_manager_app_.AddRootWindowController(root_window_controller);
|
| }
|
|
|
| -} // namespace wm
|
| -} // namespace mash
|
| +} // namespace mus
|
| +} // namespace ash
|
|
|