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

Side by Side Diff: ash/wm/stacking_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/stacking_controller.h" 5 #include "ash/wm/stacking_controller.h"
6 6
7 #include "ash/aura/wm_window_aura.h"
7 #include "ash/common/wm/container_finder.h" 8 #include "ash/common/wm/container_finder.h"
8 #include "ash/wm/aura/wm_window_aura.h"
9 9
10 namespace ash { 10 namespace ash {
11 11
12 //////////////////////////////////////////////////////////////////////////////// 12 ////////////////////////////////////////////////////////////////////////////////
13 // StackingController, public: 13 // StackingController, public:
14 14
15 StackingController::StackingController() {} 15 StackingController::StackingController() {}
16 16
17 StackingController::~StackingController() {} 17 StackingController::~StackingController() {}
18 18
19 //////////////////////////////////////////////////////////////////////////////// 19 ////////////////////////////////////////////////////////////////////////////////
20 // StackingController, aura::client::WindowTreeClient implementation: 20 // StackingController, aura::client::WindowTreeClient implementation:
21 21
22 aura::Window* StackingController::GetDefaultParent(aura::Window* context, 22 aura::Window* StackingController::GetDefaultParent(aura::Window* context,
23 aura::Window* window, 23 aura::Window* window,
24 const gfx::Rect& bounds) { 24 const gfx::Rect& bounds) {
25 return wm::WmWindowAura::GetAuraWindow(wm::GetDefaultParent( 25 return WmWindowAura::GetAuraWindow(wm::GetDefaultParent(
26 wm::WmWindowAura::Get(context), wm::WmWindowAura::Get(window), bounds)); 26 WmWindowAura::Get(context), WmWindowAura::Get(window), bounds));
27 } 27 }
28 28
29 } // namespace ash 29 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698