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

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

Issue 2775353002: Make backdrop fully opaque (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | no next file » | 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/common/wm/maximize_mode/workspace_backdrop_delegate.h" 5 #include "ash/common/wm/maximize_mode/workspace_backdrop_delegate.h"
6 6
7 #include "ash/common/wm/workspace/workspace_layout_manager_backdrop_delegate.h" 7 #include "ash/common/wm/workspace/workspace_layout_manager_backdrop_delegate.h"
8 #include "ash/common/wm_window.h" 8 #include "ash/common/wm_window.h"
9 #include "ash/public/cpp/shell_window_ids.h" 9 #include "ash/public/cpp/shell_window_ids.h"
10 #include "ash/root_window_controller.h" 10 #include "ash/root_window_controller.h"
11 #include "base/auto_reset.h" 11 #include "base/auto_reset.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
20 namespace ash { 20 namespace ash {
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 = 1.0f;
25 25
26 } // namespace 26 } // namespace
27 27
28 class WorkspaceBackdropDelegate::WindowObserverImpl 28 class WorkspaceBackdropDelegate::WindowObserverImpl
29 : public aura::WindowObserver { 29 : public aura::WindowObserver {
30 public: 30 public:
31 explicit WindowObserverImpl(WorkspaceBackdropDelegate* delegate) 31 explicit WindowObserverImpl(WorkspaceBackdropDelegate* delegate)
32 : delegate_(delegate) {} 32 : delegate_(delegate) {}
33 ~WindowObserverImpl() override {} 33 ~WindowObserverImpl() override {}
34 34
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 168
169 void WorkspaceBackdropDelegate::Show() { 169 void WorkspaceBackdropDelegate::Show() {
170 background_window_->GetLayer()->SetOpacity(0.0f); 170 background_window_->GetLayer()->SetOpacity(0.0f);
171 background_->Show(); 171 background_->Show();
172 ui::ScopedLayerAnimationSettings settings( 172 ui::ScopedLayerAnimationSettings settings(
173 background_window_->GetLayer()->GetAnimator()); 173 background_window_->GetLayer()->GetAnimator());
174 background_window_->GetLayer()->SetOpacity(kBackdropOpacity); 174 background_window_->GetLayer()->SetOpacity(kBackdropOpacity);
175 } 175 }
176 176
177 } // namespace ash 177 } // namespace ash
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698