| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/frame/custom_frame_view_ash.h" | 5 #include "ash/frame/custom_frame_view_ash.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "ash/common/ash_layout_constants.h" | 9 #include "ash/common/ash_layout_constants.h" |
| 10 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" |
| 10 #include "ash/common/wm_shell.h" | 11 #include "ash/common/wm_shell.h" |
| 11 #include "ash/frame/caption_buttons/frame_caption_button.h" | 12 #include "ash/frame/caption_buttons/frame_caption_button.h" |
| 12 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h" | 13 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h" |
| 13 #include "ash/shell.h" | 14 #include "ash/shell.h" |
| 14 #include "ash/test/ash_test_base.h" | 15 #include "ash/test/ash_test_base.h" |
| 15 #include "ash/test/test_session_state_delegate.h" | 16 #include "ash/test/test_session_state_delegate.h" |
| 16 #include "ash/wm/maximize_mode/maximize_mode_controller.h" | |
| 17 #include "grit/ash_resources.h" | 17 #include "grit/ash_resources.h" |
| 18 #include "ui/base/resource/resource_bundle.h" | 18 #include "ui/base/resource/resource_bundle.h" |
| 19 #include "ui/gfx/geometry/rect.h" | 19 #include "ui/gfx/geometry/rect.h" |
| 20 #include "ui/gfx/image/image_skia.h" | 20 #include "ui/gfx/image/image_skia.h" |
| 21 #include "ui/views/widget/widget.h" | 21 #include "ui/views/widget/widget.h" |
| 22 #include "ui/views/widget/widget_delegate.h" | 22 #include "ui/views/widget/widget_delegate.h" |
| 23 | 23 |
| 24 namespace ash { | 24 namespace ash { |
| 25 | 25 |
| 26 // A views::WidgetDelegate which uses a CustomFrameViewAsh. | 26 // A views::WidgetDelegate which uses a CustomFrameViewAsh. |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 Shell::GetInstance() | 217 Shell::GetInstance() |
| 218 ->maximize_mode_controller() | 218 ->maximize_mode_controller() |
| 219 ->EnableMaximizeModeWindowManager(false); | 219 ->EnableMaximizeModeWindowManager(false); |
| 220 delegate->EndFrameCaptionButtonContainerViewAnimations(); | 220 delegate->EndFrameCaptionButtonContainerViewAnimations(); |
| 221 const gfx::Rect after_restore = | 221 const gfx::Rect after_restore = |
| 222 delegate->GetFrameCaptionButtonContainerViewBounds(); | 222 delegate->GetFrameCaptionButtonContainerViewBounds(); |
| 223 EXPECT_EQ(initial, after_restore); | 223 EXPECT_EQ(initial, after_restore); |
| 224 } | 224 } |
| 225 | 225 |
| 226 } // namespace ash | 226 } // namespace ash |
| OLD | NEW |