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

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

Issue 1759523002: mus: Server-side implementation of modal windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: SetAsModal -> SetModal + Other review comments addressed Created 4 years, 9 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 const gfx::Rect& old_bounds, 233 const gfx::Rect& old_bounds,
234 const gfx::Rect& new_bounds) override; 234 const gfx::Rect& new_bounds) override;
235 void OnWindowClientAreaChanged( 235 void OnWindowClientAreaChanged(
236 ServerWindow* window, 236 ServerWindow* window,
237 const gfx::Insets& new_client_area, 237 const gfx::Insets& new_client_area,
238 const std::vector<gfx::Rect>& new_additional_client_areas) override; 238 const std::vector<gfx::Rect>& new_additional_client_areas) override;
239 void OnWindowReordered(ServerWindow* window, 239 void OnWindowReordered(ServerWindow* window,
240 ServerWindow* relative, 240 ServerWindow* relative,
241 mojom::OrderDirection direction) override; 241 mojom::OrderDirection direction) override;
242 void OnWillChangeWindowVisibility(ServerWindow* window) override; 242 void OnWillChangeWindowVisibility(ServerWindow* window) override;
243 void OnWindowVisibilityChanged(ServerWindow* window) override;
243 void OnWindowSharedPropertyChanged( 244 void OnWindowSharedPropertyChanged(
244 ServerWindow* window, 245 ServerWindow* window,
245 const std::string& name, 246 const std::string& name,
246 const std::vector<uint8_t>* new_data) override; 247 const std::vector<uint8_t>* new_data) override;
247 void OnWindowPredefinedCursorChanged(ServerWindow* window, 248 void OnWindowPredefinedCursorChanged(ServerWindow* window,
248 int32_t cursor_id) override; 249 int32_t cursor_id) override;
249 void OnWindowTextInputStateChanged(ServerWindow* window, 250 void OnWindowTextInputStateChanged(ServerWindow* window,
250 const ui::TextInputState& state) override; 251 const ui::TextInputState& state) override;
251 void OnTransientWindowAdded(ServerWindow* window, 252 void OnTransientWindowAdded(ServerWindow* window,
252 ServerWindow* transient_child) override; 253 ServerWindow* transient_child) override;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 288
288 WindowManagerFactoryRegistry window_manager_factory_registry_; 289 WindowManagerFactoryRegistry window_manager_factory_registry_;
289 290
290 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); 291 DISALLOW_COPY_AND_ASSIGN(ConnectionManager);
291 }; 292 };
292 293
293 } // namespace ws 294 } // namespace ws
294 } // namespace mus 295 } // namespace mus
295 296
296 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ 297 #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