OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/workspace/phantom_window_controller.h" | 5 #include "ash/wm/workspace/phantom_window_controller.h" |
6 | 6 |
7 #include <math.h> | 7 #include <math.h> |
8 | 8 |
9 #include "ash/common/wm/root_window_finder.h" | |
10 #include "ash/common/wm_window.h" | |
11 #include "ash/public/cpp/shell_window_ids.h" | 9 #include "ash/public/cpp/shell_window_ids.h" |
12 #include "ash/resources/grit/ash_resources.h" | 10 #include "ash/resources/grit/ash_resources.h" |
13 #include "ash/root_window_controller.h" | 11 #include "ash/root_window_controller.h" |
| 12 #include "ash/wm/root_window_finder.h" |
| 13 #include "ash/wm_window.h" |
14 #include "ui/compositor/layer.h" | 14 #include "ui/compositor/layer.h" |
15 #include "ui/compositor/scoped_layer_animation_settings.h" | 15 #include "ui/compositor/scoped_layer_animation_settings.h" |
16 #include "ui/views/background.h" | 16 #include "ui/views/background.h" |
17 #include "ui/views/painter.h" | 17 #include "ui/views/painter.h" |
18 #include "ui/views/view.h" | 18 #include "ui/views/view.h" |
19 #include "ui/views/widget/widget.h" | 19 #include "ui/views/widget/widget.h" |
20 | 20 |
21 namespace ash { | 21 namespace ash { |
22 namespace { | 22 namespace { |
23 | 23 |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 widget_layer->SetOpacity(0); | 142 widget_layer->SetOpacity(0); |
143 ui::ScopedLayerAnimationSettings scoped_setter(widget_layer->GetAnimator()); | 143 ui::ScopedLayerAnimationSettings scoped_setter(widget_layer->GetAnimator()); |
144 scoped_setter.SetTransitionDuration( | 144 scoped_setter.SetTransitionDuration( |
145 base::TimeDelta::FromMilliseconds(kAnimationDurationMs)); | 145 base::TimeDelta::FromMilliseconds(kAnimationDurationMs)); |
146 widget_layer->SetOpacity(1); | 146 widget_layer->SetOpacity(1); |
147 | 147 |
148 return phantom_widget; | 148 return phantom_widget; |
149 } | 149 } |
150 | 150 |
151 } // namespace ash | 151 } // namespace ash |
OLD | NEW |