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

Side by Side Diff: components/mus/ws/window_server.cc

Issue 2048633004: Remove type converters for ui::Event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/platform_display.cc ('k') | components/mus/ws/window_tree.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 #include "components/mus/ws/window_server.h" 5 #include "components/mus/ws/window_server.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/ptr_util.h" 11 #include "base/memory/ptr_util.h"
12 #include "base/stl_util.h" 12 #include "base/stl_util.h"
13 #include "components/mus/public/cpp/surfaces/surfaces_type_converters.h" 13 #include "components/mus/public/cpp/surfaces/surfaces_type_converters.h"
14 #include "components/mus/ws/display.h" 14 #include "components/mus/ws/display.h"
15 #include "components/mus/ws/display_binding.h" 15 #include "components/mus/ws/display_binding.h"
16 #include "components/mus/ws/display_manager.h" 16 #include "components/mus/ws/display_manager.h"
17 #include "components/mus/ws/operation.h" 17 #include "components/mus/ws/operation.h"
18 #include "components/mus/ws/server_window.h" 18 #include "components/mus/ws/server_window.h"
19 #include "components/mus/ws/window_coordinate_conversions.h" 19 #include "components/mus/ws/window_coordinate_conversions.h"
20 #include "components/mus/ws/window_manager_access_policy.h" 20 #include "components/mus/ws/window_manager_access_policy.h"
21 #include "components/mus/ws/window_manager_factory_service.h" 21 #include "components/mus/ws/window_manager_factory_service.h"
22 #include "components/mus/ws/window_manager_state.h" 22 #include "components/mus/ws/window_manager_state.h"
23 #include "components/mus/ws/window_server_delegate.h" 23 #include "components/mus/ws/window_server_delegate.h"
24 #include "components/mus/ws/window_tree.h" 24 #include "components/mus/ws/window_tree.h"
25 #include "components/mus/ws/window_tree_binding.h" 25 #include "components/mus/ws/window_tree_binding.h"
26 #include "services/shell/public/cpp/connection.h" 26 #include "services/shell/public/cpp/connection.h"
27 #include "ui/events/mojo/input_events_type_converters.h"
28 #include "ui/gfx/geometry/size_conversions.h" 27 #include "ui/gfx/geometry/size_conversions.h"
29 28
30 namespace mus { 29 namespace mus {
31 namespace ws { 30 namespace ws {
32 31
33 WindowServer::WindowServer( 32 WindowServer::WindowServer(
34 WindowServerDelegate* delegate, 33 WindowServerDelegate* delegate,
35 const scoped_refptr<mus::SurfacesState>& surfaces_state) 34 const scoped_refptr<mus::SurfacesState>& surfaces_state)
36 : delegate_(delegate), 35 : delegate_(delegate),
37 surfaces_state_(surfaces_state), 36 surfaces_state_(surfaces_state),
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 void WindowServer::OnFirstDisplayReady() { 680 void WindowServer::OnFirstDisplayReady() {
682 delegate_->OnFirstDisplayReady(); 681 delegate_->OnFirstDisplayReady();
683 } 682 }
684 683
685 void WindowServer::OnNoMoreDisplays() { 684 void WindowServer::OnNoMoreDisplays() {
686 delegate_->OnNoMoreDisplays(); 685 delegate_->OnNoMoreDisplays();
687 } 686 }
688 687
689 } // namespace ws 688 } // namespace ws
690 } // namespace mus 689 } // namespace mus
OLDNEW
« no previous file with comments | « components/mus/ws/platform_display.cc ('k') | components/mus/ws/window_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698