| 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/common/wm/overview/window_selector_item.h" | 5 #include "ash/common/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/common/material_design/material_design_controller.h" | 10 #include "ash/common/material_design/material_design_controller.h" |
| 11 #include "ash/common/metrics/user_metrics_action.h" | 11 #include "ash/common/metrics/user_metrics_action.h" |
| 12 #include "ash/common/shell_window_ids.h" | |
| 13 #include "ash/common/wm/overview/cleanup_animation_observer.h" | 12 #include "ash/common/wm/overview/cleanup_animation_observer.h" |
| 14 #include "ash/common/wm/overview/overview_animation_type.h" | 13 #include "ash/common/wm/overview/overview_animation_type.h" |
| 15 #include "ash/common/wm/overview/scoped_overview_animation_settings.h" | 14 #include "ash/common/wm/overview/scoped_overview_animation_settings.h" |
| 16 #include "ash/common/wm/overview/scoped_overview_animation_settings_factory.h" | 15 #include "ash/common/wm/overview/scoped_overview_animation_settings_factory.h" |
| 17 #include "ash/common/wm/overview/scoped_transform_overview_window.h" | 16 #include "ash/common/wm/overview/scoped_transform_overview_window.h" |
| 18 #include "ash/common/wm/overview/window_selector.h" | 17 #include "ash/common/wm/overview/window_selector.h" |
| 19 #include "ash/common/wm/overview/window_selector_controller.h" | 18 #include "ash/common/wm/overview/window_selector_controller.h" |
| 20 #include "ash/common/wm/window_state.h" | 19 #include "ash/common/wm/window_state.h" |
| 21 #include "ash/common/wm_lookup.h" | 20 #include "ash/common/wm_lookup.h" |
| 22 #include "ash/common/wm_root_window_controller.h" | 21 #include "ash/common/wm_root_window_controller.h" |
| 23 #include "ash/common/wm_shell.h" | 22 #include "ash/common/wm_shell.h" |
| 24 #include "ash/common/wm_window.h" | 23 #include "ash/common/wm_window.h" |
| 25 #include "ash/common/wm_window_property.h" | 24 #include "ash/common/wm_window_property.h" |
| 25 #include "ash/public/cpp/shell_window_ids.h" |
| 26 #include "base/auto_reset.h" | 26 #include "base/auto_reset.h" |
| 27 #include "base/strings/string_util.h" | 27 #include "base/strings/string_util.h" |
| 28 #include "base/strings/utf_string_conversions.h" | 28 #include "base/strings/utf_string_conversions.h" |
| 29 #include "base/time/time.h" | 29 #include "base/time/time.h" |
| 30 #include "grit/ash_resources.h" | 30 #include "grit/ash_resources.h" |
| 31 #include "grit/ash_strings.h" | 31 #include "grit/ash_strings.h" |
| 32 #include "ui/base/l10n/l10n_util.h" | 32 #include "ui/base/l10n/l10n_util.h" |
| 33 #include "ui/base/resource/resource_bundle.h" | 33 #include "ui/base/resource/resource_bundle.h" |
| 34 #include "ui/compositor/layer_animation_sequence.h" | 34 #include "ui/compositor/layer_animation_sequence.h" |
| 35 #include "ui/compositor/scoped_animation_duration_scale_mode.h" | 35 #include "ui/compositor/scoped_animation_duration_scale_mode.h" |
| (...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 window_selector_->delegate()->AddDelayedAnimationObserver( | 781 window_selector_->delegate()->AddDelayedAnimationObserver( |
| 782 std::move(observer)); | 782 std::move(observer)); |
| 783 widget_ptr->SetOpacity(0.f); | 783 widget_ptr->SetOpacity(0.f); |
| 784 } | 784 } |
| 785 | 785 |
| 786 gfx::SlideAnimation* WindowSelectorItem::GetBackgroundViewAnimation() { | 786 gfx::SlideAnimation* WindowSelectorItem::GetBackgroundViewAnimation() { |
| 787 return background_view_ ? background_view_->animation() : nullptr; | 787 return background_view_ ? background_view_->animation() : nullptr; |
| 788 } | 788 } |
| 789 | 789 |
| 790 } // namespace ash | 790 } // namespace ash |
| OLD | NEW |