Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: ash/aura/wm_window_aura.cc

Issue 2239233002: [ash-md] Fades overview header in and out (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [ash-md] Fades overview header in and out (crash fix for non-md path) Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/aura/wm_window_aura.h" 5 #include "ash/aura/wm_window_aura.h"
6 6
7 #include "ash/aura/aura_layout_manager_adapter.h" 7 #include "ash/aura/aura_layout_manager_adapter.h"
8 #include "ash/aura/wm_root_window_controller_aura.h" 8 #include "ash/aura/wm_root_window_controller_aura.h"
9 #include "ash/aura/wm_shell_aura.h" 9 #include "ash/aura/wm_shell_aura.h"
10 #include "ash/common/ash_constants.h" 10 #include "ash/common/ash_constants.h"
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 } 241 }
242 242
243 void WmWindowAura::SetOpacity(float opacity) { 243 void WmWindowAura::SetOpacity(float opacity) {
244 window_->layer()->SetOpacity(opacity); 244 window_->layer()->SetOpacity(opacity);
245 } 245 }
246 246
247 float WmWindowAura::GetTargetOpacity() const { 247 float WmWindowAura::GetTargetOpacity() const {
248 return window_->layer()->GetTargetOpacity(); 248 return window_->layer()->GetTargetOpacity();
249 } 249 }
250 250
251 gfx::Rect WmWindowAura::GetMinimizeAnimationTargetBoundsInScreen() const {
252 return ash::GetMinimizeAnimationTargetBoundsInScreen(window_);
253 }
254
251 void WmWindowAura::SetTransform(const gfx::Transform& transform) { 255 void WmWindowAura::SetTransform(const gfx::Transform& transform) {
252 window_->SetTransform(transform); 256 window_->SetTransform(transform);
253 } 257 }
254 258
255 gfx::Transform WmWindowAura::GetTargetTransform() const { 259 gfx::Transform WmWindowAura::GetTargetTransform() const {
256 return window_->layer()->GetTargetTransform(); 260 return window_->layer()->GetTargetTransform();
257 } 261 }
258 262
259 bool WmWindowAura::IsSystemModal() const { 263 bool WmWindowAura::IsSystemModal() const {
260 return window_->GetProperty(aura::client::kModalKey) == ui::MODAL_TYPE_SYSTEM; 264 return window_->GetProperty(aura::client::kModalKey) == ui::MODAL_TYPE_SYSTEM;
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 OnTransientChildAdded(this, Get(transient))); 828 OnTransientChildAdded(this, Get(transient)));
825 } 829 }
826 830
827 void WmWindowAura::OnTransientChildRemoved(aura::Window* window, 831 void WmWindowAura::OnTransientChildRemoved(aura::Window* window,
828 aura::Window* transient) { 832 aura::Window* transient) {
829 FOR_EACH_OBSERVER(WmTransientWindowObserver, transient_observers_, 833 FOR_EACH_OBSERVER(WmTransientWindowObserver, transient_observers_,
830 OnTransientChildRemoved(this, Get(transient))); 834 OnTransientChildRemoved(this, Get(transient)));
831 } 835 }
832 836
833 } // namespace ash 837 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698