| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 SERVICES_UI_WS_TEST_UTILS_H_ | 5 #ifndef SERVICES_UI_WS_TEST_UTILS_H_ |
| 6 #define SERVICES_UI_WS_TEST_UTILS_H_ | 6 #define SERVICES_UI_WS_TEST_UTILS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/memory/ptr_util.h" | 13 #include "base/memory/ptr_util.h" |
| 14 #include "base/message_loop/message_loop.h" | 14 #include "base/message_loop/message_loop.h" |
| 15 #include "services/ui/public/interfaces/display_manager.mojom.h" | 15 #include "services/ui/public/interfaces/display_manager.mojom.h" |
| 16 #include "services/ui/public/interfaces/window_tree.mojom.h" | 16 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 17 #include "services/ui/ws/display.h" | 17 #include "services/ui/ws/display.h" |
| 18 #include "services/ui/ws/display_binding.h" | 18 #include "services/ui/ws/display_binding.h" |
| 19 #include "services/ui/ws/drag_controller.h" | 19 #include "services/ui/ws/drag_controller.h" |
| 20 #include "services/ui/ws/event_dispatcher.h" | 20 #include "services/ui/ws/event_dispatcher.h" |
| 21 #include "services/ui/ws/frame_generator_delegate.h" |
| 21 #include "services/ui/ws/platform_display.h" | 22 #include "services/ui/ws/platform_display.h" |
| 22 #include "services/ui/ws/platform_display_factory.h" | 23 #include "services/ui/ws/platform_display_factory.h" |
| 23 #include "services/ui/ws/test_change_tracker.h" | 24 #include "services/ui/ws/test_change_tracker.h" |
| 24 #include "services/ui/ws/user_activity_monitor.h" | 25 #include "services/ui/ws/user_activity_monitor.h" |
| 25 #include "services/ui/ws/user_display_manager.h" | 26 #include "services/ui/ws/user_display_manager.h" |
| 26 #include "services/ui/ws/user_id.h" | 27 #include "services/ui/ws/user_id.h" |
| 27 #include "services/ui/ws/window_manager_state.h" | 28 #include "services/ui/ws/window_manager_state.h" |
| 28 #include "services/ui/ws/window_manager_window_tree_factory_set.h" | 29 #include "services/ui/ws/window_manager_window_tree_factory_set.h" |
| 29 #include "services/ui/ws/window_server_delegate.h" | 30 #include "services/ui/ws/window_server_delegate.h" |
| 30 #include "services/ui/ws/window_tree.h" | 31 #include "services/ui/ws/window_tree.h" |
| (...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 ServerWindow* NewWindowInTree(WindowTree* tree, ClientWindowId* client_id); | 644 ServerWindow* NewWindowInTree(WindowTree* tree, ClientWindowId* client_id); |
| 644 ServerWindow* NewWindowInTreeWithParent(WindowTree* tree, | 645 ServerWindow* NewWindowInTreeWithParent(WindowTree* tree, |
| 645 ServerWindow* parent, | 646 ServerWindow* parent, |
| 646 ClientWindowId* client_id); | 647 ClientWindowId* client_id); |
| 647 | 648 |
| 648 } // namespace test | 649 } // namespace test |
| 649 } // namespace ws | 650 } // namespace ws |
| 650 } // namespace ui | 651 } // namespace ui |
| 651 | 652 |
| 652 #endif // SERVICES_UI_WS_TEST_UTILS_H_ | 653 #endif // SERVICES_UI_WS_TEST_UTILS_H_ |
| OLD | NEW |