| 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 7ad9fde8cc9cd2581569bd52531f85dc0bcce888..f97f8b1aab3989486822eb941dfdae39eae3df4f 100644
|
| --- a/ash/wm/workspace/workspace_window_resizer_unittest.cc
|
| +++ b/ash/wm/workspace/workspace_window_resizer_unittest.cc
|
| @@ -65,6 +65,8 @@ class TestWindowDelegate : public aura::test::TestWindowDelegate {
|
| DISALLOW_COPY_AND_ASSIGN(TestWindowDelegate);
|
| };
|
|
|
| +} // namespace
|
| +
|
| class WorkspaceWindowResizerTest : public test::AshTestBase {
|
| public:
|
| WorkspaceWindowResizerTest() {}
|
| @@ -137,7 +139,7 @@ class WorkspaceWindowResizerTest : public test::AshTestBase {
|
| gfx::Point CalculateDragPoint(const WorkspaceWindowResizer& resizer,
|
| int delta_x,
|
| int delta_y) const {
|
| - gfx::Point location = resizer.GetInitialLocationInParentForTest();
|
| + gfx::Point location = resizer.GetInitialLocationForTest();
|
| location.set_x(location.x() + delta_x);
|
| location.set_y(location.y() + delta_y);
|
| return location;
|
| @@ -179,8 +181,6 @@ class WorkspaceWindowResizerTestSticky : public WorkspaceWindowResizerTest {
|
| DISALLOW_COPY_AND_ASSIGN(WorkspaceWindowResizerTestSticky);
|
| };
|
|
|
| -} // namespace
|
| -
|
| // Assertions around attached window resize dragging from the right with 2
|
| // windows.
|
| TEST_F(WorkspaceWindowResizerTest, AttachedResize_RIGHT_2) {
|
|
|