OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef ASH_ROOT_WINDOW_CONTROLLER_COMMON_H_ | |
6 #define ASH_ROOT_WINDOW_CONTROLLER_COMMON_H_ | |
7 | |
8 #include "ash/ash_export.h" | |
9 #include "base/macros.h" | |
10 | |
11 namespace ash { | |
12 namespace wm { | |
13 class WmWindow; | |
14 } | |
15 | |
16 // This will eventually become what is RootWindowController. During the | |
17 // transition it contains code used by both the aura and mus implementations. | |
18 // It should *not* contain any aura specific code. | |
19 class ASH_EXPORT RootWindowControllerCommon { | |
James Cook
2016/05/31 18:22:58
Does this need to be exported? For tests?
sky
2016/05/31 19:26:55
It doesn't. Removed.
| |
20 public: | |
21 explicit RootWindowControllerCommon(wm::WmWindow* root); | |
22 ~RootWindowControllerCommon(); | |
23 | |
24 // Creates the containers (WmWindows) used by the shell. | |
25 void CreateContainers(); | |
26 | |
27 private: | |
28 wm::WmWindow* root_; | |
29 | |
30 DISALLOW_COPY_AND_ASSIGN(RootWindowControllerCommon); | |
31 }; | |
32 | |
33 } // namespace ash | |
34 | |
35 #endif // ASH_ROOT_WINDOW_CONTROLLER_COMMON_H_ | |
OLD | NEW |