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

Side by Side Diff: ash/wm/workspace/phantom_window_controller.cc

Issue 1929023002: Refactors WindowResizers to use ash/wm/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/workspace/phantom_window_controller.h" 5 #include "ash/wm/workspace/phantom_window_controller.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 8
9 #include "ash/shell_window_ids.h"
10 #include "ash/wm/common/root_window_finder.h" 9 #include "ash/wm/common/root_window_finder.h"
11 #include "ash/wm/common/wm_root_window_controller.h" 10 #include "ash/wm/common/wm_root_window_controller.h"
11 #include "ash/wm/common/wm_shell_window_ids.h"
12 #include "ash/wm/common/wm_window.h" 12 #include "ash/wm/common/wm_window.h"
13 #include "grit/ash_resources.h" 13 #include "grit/ash_resources.h"
14 #include "ui/compositor/layer.h" 14 #include "ui/compositor/layer.h"
15 #include "ui/compositor/scoped_layer_animation_settings.h" 15 #include "ui/compositor/scoped_layer_animation_settings.h"
16 #include "ui/views/background.h" 16 #include "ui/views/background.h"
17 #include "ui/views/painter.h" 17 #include "ui/views/painter.h"
18 #include "ui/views/view.h" 18 #include "ui/views/view.h"
19 #include "ui/views/widget/widget.h" 19 #include "ui/views/widget/widget.h"
20 20
21 namespace ash { 21 namespace ash {
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 widget_layer->SetOpacity(0); 144 widget_layer->SetOpacity(0);
145 ui::ScopedLayerAnimationSettings scoped_setter(widget_layer->GetAnimator()); 145 ui::ScopedLayerAnimationSettings scoped_setter(widget_layer->GetAnimator());
146 scoped_setter.SetTransitionDuration( 146 scoped_setter.SetTransitionDuration(
147 base::TimeDelta::FromMilliseconds(kAnimationDurationMs)); 147 base::TimeDelta::FromMilliseconds(kAnimationDurationMs));
148 widget_layer->SetOpacity(1); 148 widget_layer->SetOpacity(1);
149 149
150 return phantom_widget; 150 return phantom_widget;
151 } 151 }
152 152
153 } // namespace ash 153 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698