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

Side by Side Diff: services/ui/ws/window_server.cc

Issue 2804373002: Eliminate Connector::Connect(), Connection, etc. (Closed)
Patch Set: . Created 3 years, 8 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 | « services/ui/ws/gpu_host.cc ('k') | services/ui/ws/window_server_service_test_base.h » ('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 "services/ui/ws/window_server.h" 5 #include "services/ui/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 "services/service_manager/public/cpp/connection.h"
14 #include "services/ui/ws/display.h" 13 #include "services/ui/ws/display.h"
15 #include "services/ui/ws/display_manager.h" 14 #include "services/ui/ws/display_manager.h"
16 #include "services/ui/ws/frame_generator.h" 15 #include "services/ui/ws/frame_generator.h"
17 #include "services/ui/ws/gpu_host.h" 16 #include "services/ui/ws/gpu_host.h"
18 #include "services/ui/ws/operation.h" 17 #include "services/ui/ws/operation.h"
19 #include "services/ui/ws/server_window.h" 18 #include "services/ui/ws/server_window.h"
20 #include "services/ui/ws/server_window_compositor_frame_sink_manager.h" 19 #include "services/ui/ws/server_window_compositor_frame_sink_manager.h"
21 #include "services/ui/ws/user_activity_monitor.h" 20 #include "services/ui/ws/user_activity_monitor.h"
22 #include "services/ui/ws/window_coordinate_conversions.h" 21 #include "services/ui/ws/window_coordinate_conversions.h"
23 #include "services/ui/ws/window_manager_access_policy.h" 22 #include "services/ui/ws/window_manager_access_policy.h"
(...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 void WindowServer::OnUserIdAdded(const UserId& id) { 856 void WindowServer::OnUserIdAdded(const UserId& id) {
858 activity_monitor_map_[id] = base::MakeUnique<UserActivityMonitor>(nullptr); 857 activity_monitor_map_[id] = base::MakeUnique<UserActivityMonitor>(nullptr);
859 } 858 }
860 859
861 void WindowServer::OnUserIdRemoved(const UserId& id) { 860 void WindowServer::OnUserIdRemoved(const UserId& id) {
862 activity_monitor_map_.erase(id); 861 activity_monitor_map_.erase(id);
863 } 862 }
864 863
865 } // namespace ws 864 } // namespace ws
866 } // namespace ui 865 } // namespace ui
OLDNEW
« no previous file with comments | « services/ui/ws/gpu_host.cc ('k') | services/ui/ws/window_server_service_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698