| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/wm/overview/window_selector_item.h" | 5 #include "ash/wm/overview/window_selector_item.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/material_design/material_design_controller.h" | |
| 11 #include "ash/metrics/user_metrics_action.h" | 10 #include "ash/metrics/user_metrics_action.h" |
| 12 #include "ash/public/cpp/shell_window_ids.h" | 11 #include "ash/public/cpp/shell_window_ids.h" |
| 13 #include "ash/resources/vector_icons/vector_icons.h" | 12 #include "ash/resources/vector_icons/vector_icons.h" |
| 14 #include "ash/root_window_controller.h" | 13 #include "ash/root_window_controller.h" |
| 15 #include "ash/shell_port.h" | 14 #include "ash/shell_port.h" |
| 16 #include "ash/strings/grit/ash_strings.h" | 15 #include "ash/strings/grit/ash_strings.h" |
| 17 #include "ash/wm/overview/cleanup_animation_observer.h" | 16 #include "ash/wm/overview/cleanup_animation_observer.h" |
| 18 #include "ash/wm/overview/overview_animation_type.h" | 17 #include "ash/wm/overview/overview_animation_type.h" |
| 19 #include "ash/wm/overview/scoped_overview_animation_settings.h" | 18 #include "ash/wm/overview/scoped_overview_animation_settings.h" |
| 20 #include "ash/wm/overview/scoped_overview_animation_settings_factory.h" | 19 #include "ash/wm/overview/scoped_overview_animation_settings_factory.h" |
| (...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 | 754 |
| 756 gfx::SlideAnimation* WindowSelectorItem::GetBackgroundViewAnimation() { | 755 gfx::SlideAnimation* WindowSelectorItem::GetBackgroundViewAnimation() { |
| 757 return background_view_ ? background_view_->animation() : nullptr; | 756 return background_view_ ? background_view_->animation() : nullptr; |
| 758 } | 757 } |
| 759 | 758 |
| 760 WmWindow* WindowSelectorItem::GetOverviewWindowForMinimizedStateForTest() { | 759 WmWindow* WindowSelectorItem::GetOverviewWindowForMinimizedStateForTest() { |
| 761 return transform_window_.GetOverviewWindowForMinimizedState(); | 760 return transform_window_.GetOverviewWindowForMinimizedState(); |
| 762 } | 761 } |
| 763 | 762 |
| 764 } // namespace ash | 763 } // namespace ash |
| OLD | NEW |