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

Side by Side Diff: components/mus/ws/connection_manager.h

Issue 1677513002: mus Window Server: implement event capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | « components/mus/ws/access_policy.h ('k') | components/mus/ws/connection_manager.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ 5 #ifndef COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_
6 #define COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ 6 #define COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 // These functions trivially delegate to all WindowTreeImpls, which in 167 // These functions trivially delegate to all WindowTreeImpls, which in
168 // term notify their clients. 168 // term notify their clients.
169 void ProcessWindowDestroyed(ServerWindow* window); 169 void ProcessWindowDestroyed(ServerWindow* window);
170 void ProcessWindowBoundsChanged(const ServerWindow* window, 170 void ProcessWindowBoundsChanged(const ServerWindow* window,
171 const gfx::Rect& old_bounds, 171 const gfx::Rect& old_bounds,
172 const gfx::Rect& new_bounds); 172 const gfx::Rect& new_bounds);
173 void ProcessClientAreaChanged( 173 void ProcessClientAreaChanged(
174 const ServerWindow* window, 174 const ServerWindow* window,
175 const gfx::Insets& new_client_area, 175 const gfx::Insets& new_client_area,
176 const std::vector<gfx::Rect>& new_additional_client_areas); 176 const std::vector<gfx::Rect>& new_additional_client_areas);
177 void ProcessLostCapture(const ServerWindow* window);
177 void ProcessViewportMetricsChanged(WindowTreeHostImpl* host, 178 void ProcessViewportMetricsChanged(WindowTreeHostImpl* host,
178 const mojom::ViewportMetrics& old_metrics, 179 const mojom::ViewportMetrics& old_metrics,
179 const mojom::ViewportMetrics& new_metrics); 180 const mojom::ViewportMetrics& new_metrics);
180 void ProcessWillChangeWindowHierarchy(const ServerWindow* window, 181 void ProcessWillChangeWindowHierarchy(const ServerWindow* window,
181 const ServerWindow* new_parent, 182 const ServerWindow* new_parent,
182 const ServerWindow* old_parent); 183 const ServerWindow* old_parent);
183 void ProcessWindowHierarchyChanged(const ServerWindow* window, 184 void ProcessWindowHierarchyChanged(const ServerWindow* window,
184 const ServerWindow* new_parent, 185 const ServerWindow* new_parent,
185 const ServerWindow* old_parent); 186 const ServerWindow* old_parent);
186 void ProcessWindowReorder(const ServerWindow* window, 187 void ProcessWindowReorder(const ServerWindow* window,
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 329
329 scoped_ptr<WindowManagerFactoryService> window_manager_factory_service_; 330 scoped_ptr<WindowManagerFactoryService> window_manager_factory_service_;
330 331
331 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); 332 DISALLOW_COPY_AND_ASSIGN(ConnectionManager);
332 }; 333 };
333 334
334 } // namespace ws 335 } // namespace ws
335 } // namespace mus 336 } // namespace mus
336 337
337 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ 338 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_
OLDNEW
« no previous file with comments | « components/mus/ws/access_policy.h ('k') | components/mus/ws/connection_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698