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

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: 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 const gfx::Rect& old_bounds, 267 const gfx::Rect& old_bounds,
268 const gfx::Rect& new_bounds) override; 268 const gfx::Rect& new_bounds) override;
269 void OnWindowClientAreaChanged( 269 void OnWindowClientAreaChanged(
270 ServerWindow* window, 270 ServerWindow* window,
271 const gfx::Insets& new_client_area, 271 const gfx::Insets& new_client_area,
272 const std::vector<gfx::Rect>& new_additional_client_areas) override; 272 const std::vector<gfx::Rect>& new_additional_client_areas) override;
273 void OnWindowReordered(ServerWindow* window, 273 void OnWindowReordered(ServerWindow* window,
274 ServerWindow* relative, 274 ServerWindow* relative,
275 mojom::OrderDirection direction) override; 275 mojom::OrderDirection direction) override;
276 void OnWillChangeWindowVisibility(ServerWindow* window) override; 276 void OnWillChangeWindowVisibility(ServerWindow* window) override;
277 void OnWindowVisibilityChanged(ServerWindow* window) override;
277 void OnWindowSharedPropertyChanged( 278 void OnWindowSharedPropertyChanged(
278 ServerWindow* window, 279 ServerWindow* window,
279 const std::string& name, 280 const std::string& name,
280 const std::vector<uint8_t>* new_data) override; 281 const std::vector<uint8_t>* new_data) override;
281 void OnWindowPredefinedCursorChanged(ServerWindow* window, 282 void OnWindowPredefinedCursorChanged(ServerWindow* window,
282 int32_t cursor_id) override; 283 int32_t cursor_id) override;
283 void OnWindowTextInputStateChanged(ServerWindow* window, 284 void OnWindowTextInputStateChanged(ServerWindow* window,
284 const ui::TextInputState& state) override; 285 const ui::TextInputState& state) override;
285 void OnTransientWindowAdded(ServerWindow* window, 286 void OnTransientWindowAdded(ServerWindow* window,
286 ServerWindow* transient_child) override; 287 ServerWindow* transient_child) override;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 334
334 scoped_ptr<WindowManagerFactoryService> window_manager_factory_service_; 335 scoped_ptr<WindowManagerFactoryService> window_manager_factory_service_;
335 336
336 DISALLOW_COPY_AND_ASSIGN(ConnectionManager); 337 DISALLOW_COPY_AND_ASSIGN(ConnectionManager);
337 }; 338 };
338 339
339 } // namespace ws 340 } // namespace ws
340 } // namespace mus 341 } // namespace mus
341 342
342 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_ 343 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698