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

Side by Side Diff: ash/wm/workspace_controller.cc

Issue 2035543004: Shuffles and renames ash/common/wm classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: random changes for chrome tests 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/wm/workspace_controller.h" 5 #include "ash/wm/workspace_controller.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "ash/aura/wm_window_aura.h"
9 #include "ash/common/shell_window_ids.h" 10 #include "ash/common/shell_window_ids.h"
10 #include "ash/common/wm/window_state.h" 11 #include "ash/common/wm/window_state.h"
11 #include "ash/common/wm/workspace/workspace_layout_manager.h" 12 #include "ash/common/wm/workspace/workspace_layout_manager.h"
12 #include "ash/common/wm/workspace/workspace_layout_manager_backdrop_delegate.h" 13 #include "ash/common/wm/workspace/workspace_layout_manager_backdrop_delegate.h"
13 #include "ash/common/wm/workspace/workspace_layout_manager_delegate.h" 14 #include "ash/common/wm/workspace/workspace_layout_manager_delegate.h"
14 #include "ash/root_window_controller.h" 15 #include "ash/root_window_controller.h"
15 #include "ash/shelf/shelf_layout_manager.h" 16 #include "ash/shelf/shelf_layout_manager.h"
16 #include "ash/shell.h" 17 #include "ash/shell.h"
17 #include "ash/wm/aura/wm_window_aura.h"
18 #include "ash/wm/window_animations.h" 18 #include "ash/wm/window_animations.h"
19 #include "ash/wm/window_state_aura.h" 19 #include "ash/wm/window_state_aura.h"
20 #include "ash/wm/window_util.h" 20 #include "ash/wm/window_util.h"
21 #include "ash/wm/workspace/workspace_event_handler.h" 21 #include "ash/wm/workspace/workspace_event_handler.h"
22 #include "base/memory/ptr_util.h" 22 #include "base/memory/ptr_util.h"
23 #include "ui/aura/client/aura_constants.h" 23 #include "ui/aura/client/aura_constants.h"
24 #include "ui/aura/window.h" 24 #include "ui/aura/window.h"
25 #include "ui/aura/window_event_dispatcher.h" 25 #include "ui/aura/window_event_dispatcher.h"
26 #include "ui/compositor/layer.h" 26 #include "ui/compositor/layer.h"
27 #include "ui/compositor/scoped_layer_animation_settings.h" 27 #include "ui/compositor/scoped_layer_animation_settings.h"
(...skipping 15 matching lines...) Expand all
43 } 43 }
44 44
45 } // namespace 45 } // namespace
46 46
47 WorkspaceController::WorkspaceController( 47 WorkspaceController::WorkspaceController(
48 aura::Window* viewport, 48 aura::Window* viewport,
49 std::unique_ptr<wm::WorkspaceLayoutManagerDelegate> delegate) 49 std::unique_ptr<wm::WorkspaceLayoutManagerDelegate> delegate)
50 : viewport_(viewport), 50 : viewport_(viewport),
51 shelf_(NULL), 51 shelf_(NULL),
52 event_handler_(new WorkspaceEventHandler), 52 event_handler_(new WorkspaceEventHandler),
53 layout_manager_( 53 layout_manager_(new WorkspaceLayoutManager(WmWindowAura::Get(viewport),
54 new WorkspaceLayoutManager(wm::WmWindowAura::Get(viewport), 54 std::move(delegate))) {
55 std::move(delegate))) {
56 SetWindowVisibilityAnimationTransition( 55 SetWindowVisibilityAnimationTransition(
57 viewport_, ::wm::ANIMATE_NONE); 56 viewport_, ::wm::ANIMATE_NONE);
58 57
59 wm::WmWindowAura::Get(viewport_)->SetLayoutManager( 58 WmWindowAura::Get(viewport_)->SetLayoutManager(
60 base::WrapUnique(layout_manager_)); 59 base::WrapUnique(layout_manager_));
61 viewport_->AddPreTargetHandler(event_handler_.get()); 60 viewport_->AddPreTargetHandler(event_handler_.get());
62 } 61 }
63 62
64 WorkspaceController::~WorkspaceController() { 63 WorkspaceController::~WorkspaceController() {
65 viewport_->SetLayoutManager(NULL); 64 viewport_->SetLayoutManager(NULL);
66 viewport_->RemovePreTargetHandler(event_handler_.get()); 65 viewport_->RemovePreTargetHandler(event_handler_.get());
67 } 66 }
68 67
69 wm::WorkspaceWindowState WorkspaceController::GetWindowState() const { 68 wm::WorkspaceWindowState WorkspaceController::GetWindowState() const {
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 viewport_->layer()->SetOpacity(1.0f); 145 viewport_->layer()->SetOpacity(1.0f);
147 } 146 }
148 } 147 }
149 148
150 void WorkspaceController::SetMaximizeBackdropDelegate( 149 void WorkspaceController::SetMaximizeBackdropDelegate(
151 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> delegate) { 150 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> delegate) {
152 layout_manager_->SetMaximizeBackdropDelegate(std::move(delegate)); 151 layout_manager_->SetMaximizeBackdropDelegate(std::move(delegate));
153 } 152 }
154 153
155 } // namespace ash 154 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698