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/common/frame/header_painter_util.h" | 5 #include "ash/frame/header_painter_util.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "ash/common/wm_window.h" | 9 #include "ash/wm_window.h" |
10 #include "ui/compositor/layer.h" | 10 #include "ui/compositor/layer.h" |
11 #include "ui/compositor/layer_animator.h" | 11 #include "ui/compositor/layer_animator.h" |
12 #include "ui/gfx/font_list.h" | 12 #include "ui/gfx/font_list.h" |
13 #include "ui/gfx/geometry/rect.h" | 13 #include "ui/gfx/geometry/rect.h" |
14 #include "ui/views/view.h" | 14 #include "ui/views/view.h" |
15 #include "ui/views/widget/widget.h" | 15 #include "ui/views/widget/widget.h" |
16 | 16 |
17 namespace { | 17 namespace { |
18 | 18 |
19 // Radius of the header's top corners when the window is restored. | 19 // Radius of the header's top corners when the window is restored. |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 | 89 |
90 ui::LayerAnimator* parent_layer_animator = | 90 ui::LayerAnimator* parent_layer_animator = |
91 window->GetParent()->GetLayer()->GetAnimator(); | 91 window->GetParent()->GetLayer()->GetAnimator(); |
92 return !parent_layer_animator->IsAnimatingProperty( | 92 return !parent_layer_animator->IsAnimatingProperty( |
93 ui::LayerAnimationElement::OPACITY) && | 93 ui::LayerAnimationElement::OPACITY) && |
94 !parent_layer_animator->IsAnimatingProperty( | 94 !parent_layer_animator->IsAnimatingProperty( |
95 ui::LayerAnimationElement::VISIBILITY); | 95 ui::LayerAnimationElement::VISIBILITY); |
96 } | 96 } |
97 | 97 |
98 } // namespace ash | 98 } // namespace ash |
OLD | NEW |