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

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

Issue 1957653003: mash: Don't close system tray bubble for clicks in menus/notifications (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
« no previous file with comments | « content/renderer/mus/compositor_mus_connection.cc ('k') | mash/wm/root_window_controller.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 private: 76 private:
77 explicit RootWindowController(WindowManagerApplication* app); 77 explicit RootWindowController(WindowManagerApplication* app);
78 ~RootWindowController() override; 78 ~RootWindowController() override;
79 79
80 void AddAccelerators(); 80 void AddAccelerators();
81 81
82 // WindowTreeDelegate: 82 // WindowTreeDelegate:
83 void OnEmbed(mus::Window* root) override; 83 void OnEmbed(mus::Window* root) override;
84 void OnConnectionLost(mus::WindowTreeConnection* connection) override; 84 void OnConnectionLost(mus::WindowTreeConnection* connection) override;
85 void OnEventObserved(const ui::Event& event) override; 85 void OnEventObserved(const ui::Event& event, mus::Window* target) override;
86 86
87 // mus::WindowObserver: 87 // mus::WindowObserver:
88 void OnWindowDestroyed(mus::Window* window) override; 88 void OnWindowDestroyed(mus::Window* window) override;
89 89
90 // Sets up the window containers used for z-space management. 90 // Sets up the window containers used for z-space management.
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_manager_;
102 102
103 std::unique_ptr<ShadowController> shadow_controller_; 103 std::unique_ptr<ShadowController> shadow_controller_;
104 104
105 gfx::Display display_; 105 gfx::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
« no previous file with comments | « content/renderer/mus/compositor_mus_connection.cc ('k') | mash/wm/root_window_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698