| 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 <stddef.h> | 5 #include <stddef.h> |
| 6 #include <stdint.h> | 6 #include <stdint.h> |
| 7 | 7 |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| 11 #include "base/run_loop.h" | 11 #include "base/run_loop.h" |
| 12 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
| 13 #include "mojo/public/cpp/bindings/associated_binding.h" | 13 #include "mojo/public/cpp/bindings/associated_binding.h" |
| 14 #include "mojo/public/cpp/bindings/binding.h" | 14 #include "mojo/public/cpp/bindings/binding.h" |
| 15 #include "services/service_manager/public/cpp/interface_factory.h" | 15 #include "services/service_manager/public/cpp/interface_factory.h" |
| 16 #include "services/service_manager/public/cpp/interface_registry.h" | 16 #include "services/service_manager/public/cpp/interface_registry.h" |
| 17 #include "services/service_manager/public/cpp/service_test.h" | 17 #include "services/service_manager/public/cpp/service_test.h" |
| 18 #include "services/ui/public/cpp/tests/window_server_shelltest_base.h" | |
| 19 #include "services/ui/public/interfaces/constants.mojom.h" | 18 #include "services/ui/public/interfaces/constants.mojom.h" |
| 20 #include "services/ui/public/interfaces/window_tree.mojom.h" | 19 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 21 #include "services/ui/public/interfaces/window_tree_host.mojom.h" | 20 #include "services/ui/public/interfaces/window_tree_host.mojom.h" |
| 22 #include "services/ui/ws/ids.h" | 21 #include "services/ui/ws/ids.h" |
| 23 #include "services/ui/ws/test_change_tracker.h" | 22 #include "services/ui/ws/test_change_tracker.h" |
| 23 #include "services/ui/ws/window_server_service_test_base.h" |
| 24 | 24 |
| 25 using service_manager::Connection; | 25 using service_manager::Connection; |
| 26 using mojo::InterfaceRequest; | 26 using mojo::InterfaceRequest; |
| 27 using service_manager::Service; | 27 using service_manager::Service; |
| 28 using ui::mojom::WindowDataPtr; | 28 using ui::mojom::WindowDataPtr; |
| 29 using ui::mojom::WindowTree; | 29 using ui::mojom::WindowTree; |
| 30 using ui::mojom::WindowTreeClient; | 30 using ui::mojom::WindowTreeClient; |
| 31 | 31 |
| 32 namespace ui { | 32 namespace ui { |
| 33 namespace ws { | 33 namespace ws { |
| (...skipping 2181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2215 | 2215 |
| 2216 // TODO(sky): make sure coverage of what was | 2216 // TODO(sky): make sure coverage of what was |
| 2217 // WindowManagerTest.SecondEmbedRoot_InitService and | 2217 // WindowManagerTest.SecondEmbedRoot_InitService and |
| 2218 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window | 2218 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window |
| 2219 // manager | 2219 // manager |
| 2220 // tests. | 2220 // tests. |
| 2221 | 2221 |
| 2222 } // namespace test | 2222 } // namespace test |
| 2223 } // namespace ws | 2223 } // namespace ws |
| 2224 } // namespace ui | 2224 } // namespace ui |
| OLD | NEW |