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

Side by Side Diff: ash/common/root_window_controller_common.h

Issue 2033843003: Makes ash/mus use RootWindowControllerCommon (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_mash_wm
Patch Set: git cl add 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef ASH_COMMON_ROOT_WINDOW_CONTROLLER_COMMON_H_ 5 #ifndef ASH_COMMON_ROOT_WINDOW_CONTROLLER_COMMON_H_
6 #define ASH_COMMON_ROOT_WINDOW_CONTROLLER_COMMON_H_ 6 #define ASH_COMMON_ROOT_WINDOW_CONTROLLER_COMMON_H_
7 7
8 #include "ash/ash_export.h"
8 #include "base/macros.h" 9 #include "base/macros.h"
9 10
10 namespace ash { 11 namespace ash {
11 namespace wm { 12 namespace wm {
12 class RootWindowLayoutManager; 13 class RootWindowLayoutManager;
13 class WmWindow; 14 class WmWindow;
14 } 15 }
15 16
16 // This will eventually become what is RootWindowController. During the 17 // This will eventually become what is RootWindowController. During the
17 // transition it contains code used by both the aura and mus implementations. 18 // transition it contains code used by both the aura and mus implementations.
18 // It should *not* contain any aura specific code. 19 // It should *not* contain any aura specific code.
19 class RootWindowControllerCommon { 20 class ASH_EXPORT RootWindowControllerCommon {
20 public: 21 public:
21 explicit RootWindowControllerCommon(wm::WmWindow* root); 22 explicit RootWindowControllerCommon(wm::WmWindow* root);
22 ~RootWindowControllerCommon(); 23 ~RootWindowControllerCommon();
23 24
24 // Creates the containers (WmWindows) used by the shell. 25 // Creates the containers (WmWindows) used by the shell.
25 void CreateContainers(); 26 void CreateContainers();
26 27
27 // Creates the LayoutManagers for the windows created by CreateContainers(). 28 // Creates the LayoutManagers for the windows created by CreateContainers().
28 void CreateLayoutManagers(); 29 void CreateLayoutManagers();
29 30
30 wm::RootWindowLayoutManager* root_window_layout() { 31 wm::RootWindowLayoutManager* root_window_layout() {
31 return root_window_layout_; 32 return root_window_layout_;
32 } 33 }
33 34
34 private: 35 private:
35 wm::WmWindow* root_; 36 wm::WmWindow* root_;
36 37
37 wm::RootWindowLayoutManager* root_window_layout_; 38 wm::RootWindowLayoutManager* root_window_layout_;
38 39
39 DISALLOW_COPY_AND_ASSIGN(RootWindowControllerCommon); 40 DISALLOW_COPY_AND_ASSIGN(RootWindowControllerCommon);
40 }; 41 };
41 42
42 } // namespace ash 43 } // namespace ash
43 44
44 #endif // ASH_COMMON_ROOT_WINDOW_CONTROLLER_COMMON_H_ 45 #endif // ASH_COMMON_ROOT_WINDOW_CONTROLLER_COMMON_H_
OLDNEW
« no previous file with comments | « ash/ash.gyp ('k') | ash/common/shell_window_ids.h » ('j') | ash/common/shell_window_ids.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698