| Index: ash/wm/workspace/workspace_window_resizer_unittest.cc
|
| diff --git a/ash/wm/workspace/workspace_window_resizer_unittest.cc b/ash/wm/workspace/workspace_window_resizer_unittest.cc
|
| index c3873bc3a714dd8bf60f01526682030543b94fa2..aac414ab59482c2b51ee3df0ff6b345803338601 100644
|
| --- a/ash/wm/workspace/workspace_window_resizer_unittest.cc
|
| +++ b/ash/wm/workspace/workspace_window_resizer_unittest.cc
|
| @@ -566,7 +566,8 @@ TEST_F(WorkspaceWindowResizerTest, Edge) {
|
|
|
| {
|
| gfx::Rect expected_bounds_in_parent(
|
| - wm::GetDefaultLeftSnappedWindowBoundsInParent(window_.get()));
|
| + wm::GetDefaultLeftSnappedWindowBoundsInParent(
|
| + wm::WmWindowAura::Get(window_.get())));
|
|
|
| std::unique_ptr<WindowResizer> resizer(
|
| CreateResizerForTest(window_.get(), gfx::Point(), HTCAPTION));
|
| @@ -583,7 +584,8 @@ TEST_F(WorkspaceWindowResizerTest, Edge) {
|
| // Try the same with the right side.
|
| {
|
| gfx::Rect expected_bounds_in_parent(
|
| - wm::GetDefaultRightSnappedWindowBoundsInParent(window_.get()));
|
| + wm::GetDefaultRightSnappedWindowBoundsInParent(
|
| + wm::WmWindowAura::Get(window_.get())));
|
|
|
| std::unique_ptr<WindowResizer> resizer(
|
| CreateResizerForTest(window_.get(), gfx::Point(), HTCAPTION));
|
|
|