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

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: More cleanup 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
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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 const gfx::Rect& old_bounds, 235 const gfx::Rect& old_bounds,
236 const gfx::Rect& new_bounds) override; 236 const gfx::Rect& new_bounds) override;
237 void OnWindowClientAreaChanged( 237 void OnWindowClientAreaChanged(
238 ServerWindow* window, 238 ServerWindow* window,
239 const gfx::Insets& new_client_area, 239 const gfx::Insets& new_client_area,
240 const std::vector<gfx::Rect>& new_additional_client_areas) override; 240 const std::vector<gfx::Rect>& new_additional_client_areas) override;
241 void OnWindowReordered(ServerWindow* window, 241 void OnWindowReordered(ServerWindow* window,
242 ServerWindow* relative, 242 ServerWindow* relative,
243 mojom::OrderDirection direction) override; 243 mojom::OrderDirection direction) override;
244 void OnWillChangeWindowVisibility(ServerWindow* window) override; 244 void OnWillChangeWindowVisibility(ServerWindow* window) override;
245 void OnWindowVisibilityChanged(ServerWindow* window) override;
245 void OnWindowSharedPropertyChanged( 246 void OnWindowSharedPropertyChanged(
246 ServerWindow* window, 247 ServerWindow* window,
247 const std::string& name, 248 const std::string& name,
248 const std::vector<uint8_t>* new_data) override; 249 const std::vector<uint8_t>* new_data) override;
249 void OnWindowPredefinedCursorChanged(ServerWindow* window, 250 void OnWindowPredefinedCursorChanged(ServerWindow* window,
250 int32_t cursor_id) override; 251 int32_t cursor_id) override;
251 void OnWindowTextInputStateChanged(ServerWindow* window, 252 void OnWindowTextInputStateChanged(ServerWindow* window,
252 const ui::TextInputState& state) override; 253 const ui::TextInputState& state) override;
253 void OnTransientWindowAdded(ServerWindow* window, 254 void OnTransientWindowAdded(ServerWindow* window,
254 ServerWindow* transient_child) override; 255 ServerWindow* transient_child) override;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 291
291 WindowManagerFactoryRegistry window_manager_factory_registry_; 292 WindowManagerFactoryRegistry window_manager_factory_registry_;
292 293
293 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); 294 DISALLOW_COPY_AND_ASSIGN(ConnectionManager);
294 }; 295 };
295 296
296 } // namespace ws 297 } // namespace ws
297 } // namespace mus 298 } // namespace mus
298 299
299 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ 300 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698