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

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

Issue 2025413002: Moves RootWindowControllerCommon and LayoutManager to common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@use_root_window_controller_common
Patch Set: merge Created 4 years, 6 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/common/wm/workspace/phantom_window_controller.h" 5 #include "ash/common/wm/workspace/phantom_window_controller.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 8
9 #include "ash/common/shell_window_ids.h"
9 #include "ash/common/wm/root_window_finder.h" 10 #include "ash/common/wm/root_window_finder.h"
10 #include "ash/common/wm/wm_lookup.h" 11 #include "ash/common/wm/wm_lookup.h"
11 #include "ash/common/wm/wm_root_window_controller.h" 12 #include "ash/common/wm/wm_root_window_controller.h"
12 #include "ash/common/wm/wm_shell_window_ids.h"
13 #include "ash/common/wm/wm_window.h" 13 #include "ash/common/wm/wm_window.h"
14 #include "grit/ash_resources.h" 14 #include "grit/ash_resources.h"
15 #include "ui/compositor/layer.h" 15 #include "ui/compositor/layer.h"
16 #include "ui/compositor/scoped_layer_animation_settings.h" 16 #include "ui/compositor/scoped_layer_animation_settings.h"
17 #include "ui/views/background.h" 17 #include "ui/views/background.h"
18 #include "ui/views/painter.h" 18 #include "ui/views/painter.h"
19 #include "ui/views/view.h" 19 #include "ui/views/view.h"
20 #include "ui/views/widget/widget.h" 20 #include "ui/views/widget/widget.h"
21 21
22 namespace ash { 22 namespace ash {
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 widget_layer->SetOpacity(0); 148 widget_layer->SetOpacity(0);
149 ui::ScopedLayerAnimationSettings scoped_setter(widget_layer->GetAnimator()); 149 ui::ScopedLayerAnimationSettings scoped_setter(widget_layer->GetAnimator());
150 scoped_setter.SetTransitionDuration( 150 scoped_setter.SetTransitionDuration(
151 base::TimeDelta::FromMilliseconds(kAnimationDurationMs)); 151 base::TimeDelta::FromMilliseconds(kAnimationDurationMs));
152 widget_layer->SetOpacity(1); 152 widget_layer->SetOpacity(1);
153 153
154 return phantom_widget; 154 return phantom_widget;
155 } 155 }
156 156
157 } // namespace ash 157 } // namespace ash
OLDNEW
« no previous file with comments | « ash/common/wm/workspace/multi_window_resize_controller.cc ('k') | ash/common/wm/workspace/workspace_window_resizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698