| OLD | NEW |
| 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" |
| (...skipping 864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 display->platform_display()->GetFrameGenerator()->OnSurfaceCreated( | 875 display->platform_display()->GetFrameGenerator()->OnSurfaceCreated( |
| 876 surface_info); | 876 surface_info); |
| 877 display->root_window() | 877 display->root_window() |
| 878 ->GetOrCreateCompositorFrameSinkManager() | 878 ->GetOrCreateCompositorFrameSinkManager() |
| 879 ->ClaimTemporaryReference(surface_info.id()); | 879 ->ClaimTemporaryReference(surface_info.id()); |
| 880 return; | 880 return; |
| 881 } | 881 } |
| 882 | 882 |
| 883 HandleTemporaryReferenceForNewSurface(surface_info.id(), window); | 883 HandleTemporaryReferenceForNewSurface(surface_info.id(), window); |
| 884 | 884 |
| 885 // We always use the owner of the window's id (even for an embedded window), | 885 if (!window->parent()) |
| 886 // because an embedded window's id is allocated by the parent's window tree. | 886 return; |
| 887 WindowTree* window_tree = GetTreeWithId(window->id().client_id); | 887 |
| 888 WindowTree* window_tree = GetTreeWithId(window->parent()->id().client_id); |
| 888 if (window_tree) | 889 if (window_tree) |
| 889 window_tree->ProcessWindowSurfaceChanged(window, surface_info); | 890 window_tree->ProcessWindowSurfaceChanged(window, surface_info); |
| 890 } | 891 } |
| 891 | 892 |
| 892 void WindowServer::OnActiveUserIdChanged(const UserId& previously_active_id, | 893 void WindowServer::OnActiveUserIdChanged(const UserId& previously_active_id, |
| 893 const UserId& active_id) { | 894 const UserId& active_id) { |
| 894 } | 895 } |
| 895 | 896 |
| 896 void WindowServer::OnUserIdAdded(const UserId& id) { | 897 void WindowServer::OnUserIdAdded(const UserId& id) { |
| 897 activity_monitor_map_[id] = base::MakeUnique<UserActivityMonitor>(nullptr); | 898 activity_monitor_map_[id] = base::MakeUnique<UserActivityMonitor>(nullptr); |
| 898 } | 899 } |
| 899 | 900 |
| 900 void WindowServer::OnUserIdRemoved(const UserId& id) { | 901 void WindowServer::OnUserIdRemoved(const UserId& id) { |
| 901 activity_monitor_map_.erase(id); | 902 activity_monitor_map_.erase(id); |
| 902 } | 903 } |
| 903 | 904 |
| 904 } // namespace ws | 905 } // namespace ws |
| 905 } // namespace ui | 906 } // namespace ui |
| OLD | NEW |