| 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 #include <stdint.h> | 5 #include <stdint.h> |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 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 "services/ui/common/types.h" | 11 #include "services/ui/common/types.h" |
| 12 #include "services/ui/common/util.h" | 12 #include "services/ui/common/util.h" |
| 13 #include "services/ui/display/viewport_metrics.h" | 13 #include "services/ui/display/viewport_metrics.h" |
| 14 #include "services/ui/public/interfaces/window_tree.mojom.h" | 14 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 15 #include "services/ui/surfaces/display_compositor.h" | |
| 16 #include "services/ui/ws/display_manager.h" | 15 #include "services/ui/ws/display_manager.h" |
| 17 #include "services/ui/ws/ids.h" | 16 #include "services/ui/ws/ids.h" |
| 18 #include "services/ui/ws/platform_display.h" | 17 #include "services/ui/ws/platform_display.h" |
| 19 #include "services/ui/ws/platform_display_factory.h" | 18 #include "services/ui/ws/platform_display_factory.h" |
| 20 #include "services/ui/ws/server_window.h" | 19 #include "services/ui/ws/server_window.h" |
| 21 #include "services/ui/ws/test_utils.h" | 20 #include "services/ui/ws/test_utils.h" |
| 22 #include "services/ui/ws/window_manager_display_root.h" | 21 #include "services/ui/ws/window_manager_display_root.h" |
| 23 #include "services/ui/ws/window_manager_state.h" | 22 #include "services/ui/ws/window_manager_state.h" |
| 24 #include "services/ui/ws/window_server.h" | 23 #include "services/ui/ws/window_server.h" |
| 25 #include "services/ui/ws/window_server_delegate.h" | 24 #include "services/ui/ws/window_server_delegate.h" |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 ASSERT_EQ(0u, tree_client->tracker()->changes()->size()); | 417 ASSERT_EQ(0u, tree_client->tracker()->changes()->size()); |
| 419 | 418 |
| 420 // The window should be destroyed when the client says so. | 419 // The window should be destroyed when the client says so. |
| 421 ASSERT_TRUE(tree->DeleteWindow(secondary_root_id)); | 420 ASSERT_TRUE(tree->DeleteWindow(secondary_root_id)); |
| 422 EXPECT_TRUE(secondary_root_destroyed); | 421 EXPECT_TRUE(secondary_root_destroyed); |
| 423 } | 422 } |
| 424 | 423 |
| 425 } // namespace test | 424 } // namespace test |
| 426 } // namespace ws | 425 } // namespace ws |
| 427 } // namespace ui | 426 } // namespace ui |
| OLD | NEW |