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/wm/maximize_mode/workspace_backdrop_delegate.h" | 5 #include "ash/wm/maximize_mode/workspace_backdrop_delegate.h" |
6 | 6 |
| 7 #include "ash/wm/common/workspace/workspace_layout_manager_backdrop_delegate.h" |
7 #include "ash/wm/window_animations.h" | 8 #include "ash/wm/window_animations.h" |
8 #include "ash/wm/window_util.h" | 9 #include "ash/wm/window_util.h" |
9 #include "ash/wm/workspace/workspace_layout_manager_backdrop_delegate.h" | |
10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
11 #include "ui/aura/window.h" | 11 #include "ui/aura/window.h" |
12 #include "ui/aura/window_observer.h" | 12 #include "ui/aura/window_observer.h" |
13 #include "ui/compositor/layer.h" | 13 #include "ui/compositor/layer.h" |
14 #include "ui/compositor/scoped_layer_animation_settings.h" | 14 #include "ui/compositor/scoped_layer_animation_settings.h" |
15 #include "ui/views/background.h" | 15 #include "ui/views/background.h" |
16 #include "ui/views/widget/widget.h" | 16 #include "ui/views/widget/widget.h" |
17 #include "ui/wm/core/window_animations.h" | 17 #include "ui/wm/core/window_animations.h" |
18 #include "ui/wm/core/window_util.h" | 18 #include "ui/wm/core/window_util.h" |
19 | 19 |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 | 171 |
172 void WorkspaceBackdropDelegate::Show() { | 172 void WorkspaceBackdropDelegate::Show() { |
173 background_->GetNativeView()->layer()->SetOpacity(0.0f); | 173 background_->GetNativeView()->layer()->SetOpacity(0.0f); |
174 background_->Show(); | 174 background_->Show(); |
175 ui::ScopedLayerAnimationSettings settings( | 175 ui::ScopedLayerAnimationSettings settings( |
176 background_->GetNativeView()->layer()->GetAnimator()); | 176 background_->GetNativeView()->layer()->GetAnimator()); |
177 background_->GetNativeView()->layer()->SetOpacity(kBackdropOpacity); | 177 background_->GetNativeView()->layer()->SetOpacity(kBackdropOpacity); |
178 } | 178 } |
179 | 179 |
180 } // namespace ash | 180 } // namespace ash |
OLD | NEW |