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

Side by Side Diff: ash/wm/maximize_mode/workspace_backdrop_delegate.cc

Issue 194843004: Move files from ui/views/corewm to ui/wm/core (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « ash/wm/lock_state_controller.cc ('k') | ash/wm/overview/scoped_transform_overview_window.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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"
11 #include "ui/compositor/layer.h" 11 #include "ui/compositor/layer.h"
12 #include "ui/compositor/scoped_layer_animation_settings.h" 12 #include "ui/compositor/scoped_layer_animation_settings.h"
13 #include "ui/views/background.h" 13 #include "ui/views/background.h"
14 #include "ui/views/corewm/window_util.h"
15 #include "ui/views/widget/widget.h" 14 #include "ui/views/widget/widget.h"
15 #include "ui/wm/core/window_util.h"
16 16
17 namespace ash { 17 namespace ash {
18 18
19 namespace internal { 19 namespace internal {
20 20
21 namespace { 21 namespace {
22 22
23 // The opacity of the backdrop. 23 // The opacity of the backdrop.
24 const float kBackdropOpacity = 0.5f; 24 const float kBackdropOpacity = 0.5f;
25 25
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « ash/wm/lock_state_controller.cc ('k') | ash/wm/overview/scoped_transform_overview_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698