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

Side by Side Diff: mash/wm/root_window_controller.h

Issue 1980593002: Changes container names and adds a couple of more (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 MASH_WM_ROOT_WINDOW_CONTROLLER_H_ 5 #ifndef MASH_WM_ROOT_WINDOW_CONTROLLER_H_
6 #define MASH_WM_ROOT_WINDOW_CONTROLLER_H_ 6 #define MASH_WM_ROOT_WINDOW_CONTROLLER_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "components/mus/public/cpp/window_observer.h" 10 #include "components/mus/public/cpp/window_observer.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 void CreateContainer(mash::wm::mojom::Container container, 91 void CreateContainer(mash::wm::mojom::Container container,
92 mash::wm::mojom::Container parent_container); 92 mash::wm::mojom::Container parent_container);
93 void CreateContainers(); 93 void CreateContainers();
94 94
95 WindowManagerApplication* app_; 95 WindowManagerApplication* app_;
96 mus::Window* root_; 96 mus::Window* root_;
97 int window_count_; 97 int window_count_;
98 98
99 std::unique_ptr<WindowManager> window_manager_; 99 std::unique_ptr<WindowManager> window_manager_;
100 100
101 std::map<mus::Window*, std::unique_ptr<LayoutManager>> layout_manager_; 101 std::map<mus::Window*, std::unique_ptr<LayoutManager>> layout_managers_;
102 102
103 std::unique_ptr<ShadowController> shadow_controller_; 103 std::unique_ptr<ShadowController> shadow_controller_;
104 104
105 display::Display display_; 105 display::Display display_;
106 106
107 DISALLOW_COPY_AND_ASSIGN(RootWindowController); 107 DISALLOW_COPY_AND_ASSIGN(RootWindowController);
108 }; 108 };
109 109
110 } // namespace wm 110 } // namespace wm
111 } // namespace mash 111 } // namespace mash
112 112
113 #endif // MASH_WM_ROOT_WINDOW_CONTROLLER_H_ 113 #endif // MASH_WM_ROOT_WINDOW_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698