| Index: ash/wm/overview/window_selector_unittest.cc
|
| diff --git a/ash/wm/overview/window_selector_unittest.cc b/ash/wm/overview/window_selector_unittest.cc
|
| index 73fb5a637c47086ffd2acc599168305da327c4ec..0629a5d9352913f25ca9c69049613d52d1453595 100644
|
| --- a/ash/wm/overview/window_selector_unittest.cc
|
| +++ b/ash/wm/overview/window_selector_unittest.cc
|
| @@ -26,7 +26,6 @@
|
| #include "ash/common/wm/workspace/workspace_window_resizer.h"
|
| #include "ash/common/wm_shell.h"
|
| #include "ash/common/wm_window.h"
|
| -#include "ash/common/wm_window_property.h"
|
| #include "ash/drag_drop/drag_drop_controller.h"
|
| #include "ash/public/cpp/shell_window_ids.h"
|
| #include "ash/root_window_controller.h"
|
| @@ -160,7 +159,8 @@ class WindowSelectorTest : public test::AshTestBase {
|
| widget->Init(params);
|
| widget->Show();
|
| WmWindow* window = WmWindow::Get(widget->GetNativeWindow());
|
| - window->SetIntProperty(WmWindowProperty::TOP_VIEW_INSET, kHeaderHeight);
|
| + window->aura_window()->SetProperty(aura::client::kTopViewInset,
|
| + kHeaderHeight);
|
| ParentWindowInPrimaryRootWindow(widget->GetNativeWindow());
|
| return widget;
|
| }
|
| @@ -1130,7 +1130,8 @@ TEST_F(WindowSelectorTest, CloseButtonOnMultipleDisplay) {
|
| widget->Init(params);
|
| widget->Show();
|
| WmWindow* window = WmWindow::Get(widget->GetNativeWindow());
|
| - window->SetIntProperty(WmWindowProperty::TOP_VIEW_INSET, kHeaderHeight);
|
| + window->aura_window()->SetProperty(aura::client::kTopViewInset,
|
| + kHeaderHeight);
|
|
|
| ASSERT_EQ(root_windows[1], window1->GetRootWindow());
|
|
|
|
|