| 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 "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" | |
| 14 #include "components/mus/ws/display.h" | 13 #include "components/mus/ws/display.h" |
| 15 #include "components/mus/ws/display_binding.h" | 14 #include "components/mus/ws/display_binding.h" |
| 16 #include "components/mus/ws/display_manager.h" | 15 #include "components/mus/ws/display_manager.h" |
| 17 #include "components/mus/ws/operation.h" | 16 #include "components/mus/ws/operation.h" |
| 18 #include "components/mus/ws/server_window.h" | 17 #include "components/mus/ws/server_window.h" |
| 19 #include "components/mus/ws/window_coordinate_conversions.h" | 18 #include "components/mus/ws/window_coordinate_conversions.h" |
| 20 #include "components/mus/ws/window_manager_access_policy.h" | 19 #include "components/mus/ws/window_manager_access_policy.h" |
| 21 #include "components/mus/ws/window_manager_display_root.h" | 20 #include "components/mus/ws/window_manager_display_root.h" |
| 22 #include "components/mus/ws/window_manager_state.h" | 21 #include "components/mus/ws/window_manager_state.h" |
| 23 #include "components/mus/ws/window_manager_window_tree_factory.h" | 22 #include "components/mus/ws/window_manager_window_tree_factory.h" |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 } | 674 } |
| 676 | 675 |
| 677 WindowManagerState* WindowServer::GetWindowManagerStateForUser( | 676 WindowManagerState* WindowServer::GetWindowManagerStateForUser( |
| 678 const UserId& user_id) { | 677 const UserId& user_id) { |
| 679 return window_manager_window_tree_factory_set_.GetWindowManagerStateForUser( | 678 return window_manager_window_tree_factory_set_.GetWindowManagerStateForUser( |
| 680 user_id); | 679 user_id); |
| 681 } | 680 } |
| 682 | 681 |
| 683 } // namespace ws | 682 } // namespace ws |
| 684 } // namespace mus | 683 } // namespace mus |
| OLD | NEW |