| 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/window_animations.h" | 7 #include "ash/wm/window_animations.h" |
| 8 #include "ash/wm/window_util.h" | 8 #include "ash/wm/window_util.h" |
| 9 #include "base/auto_reset.h" | 9 #include "base/auto_reset.h" |
| 10 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 Show(); | 44 Show(); |
| 45 RestackBackdrop(); | 45 RestackBackdrop(); |
| 46 container_->AddObserver(this); | 46 container_->AddObserver(this); |
| 47 } | 47 } |
| 48 | 48 |
| 49 WorkspaceBackdropDelegate::~WorkspaceBackdropDelegate() { | 49 WorkspaceBackdropDelegate::~WorkspaceBackdropDelegate() { |
| 50 container_->RemoveObserver(this); | 50 container_->RemoveObserver(this); |
| 51 ui::ScopedLayerAnimationSettings settings( | 51 ui::ScopedLayerAnimationSettings settings( |
| 52 background_->GetNativeView()->layer()->GetAnimator()); | 52 background_->GetNativeView()->layer()->GetAnimator()); |
| 53 background_->Close(); | 53 background_->Close(); |
| 54 settings.AddObserver(views::corewm::CreateHidingWindowAnimationObserver( | 54 settings.AddObserver(::wm::CreateHidingWindowAnimationObserver( |
| 55 background_->GetNativeView())); | 55 background_->GetNativeView())); |
| 56 background_->GetNativeView()->layer()->SetOpacity(0.0f); | 56 background_->GetNativeView()->layer()->SetOpacity(0.0f); |
| 57 } | 57 } |
| 58 | 58 |
| 59 void WorkspaceBackdropDelegate::OnWindowBoundsChanged( | 59 void WorkspaceBackdropDelegate::OnWindowBoundsChanged( |
| 60 aura::Window* window, | 60 aura::Window* window, |
| 61 const gfx::Rect& old_bounds, | 61 const gfx::Rect& old_bounds, |
| 62 const gfx::Rect& new_bounds) { | 62 const gfx::Rect& new_bounds) { |
| 63 // The container size has changed and the layer needs to be adapt to it. | 63 // The container size has changed and the layer needs to be adapt to it. |
| 64 AdjustToContainerBounds(); | 64 AdjustToContainerBounds(); |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 void WorkspaceBackdropDelegate::Show() { | 145 void WorkspaceBackdropDelegate::Show() { |
| 146 background_->GetNativeView()->layer()->SetOpacity(0.0f); | 146 background_->GetNativeView()->layer()->SetOpacity(0.0f); |
| 147 background_->Show(); | 147 background_->Show(); |
| 148 ui::ScopedLayerAnimationSettings settings( | 148 ui::ScopedLayerAnimationSettings settings( |
| 149 background_->GetNativeView()->layer()->GetAnimator()); | 149 background_->GetNativeView()->layer()->GetAnimator()); |
| 150 background_->GetNativeView()->layer()->SetOpacity(kBackdropOpacity); | 150 background_->GetNativeView()->layer()->SetOpacity(kBackdropOpacity); |
| 151 } | 151 } |
| 152 | 152 |
| 153 } // namespace internal | 153 } // namespace internal |
| 154 } // namespace ash | 154 } // namespace ash |
| OLD | NEW |