| 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_tree.h" | 5 #include "services/ui/ws/window_tree.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/ptr_util.h" | 13 #include "base/memory/ptr_util.h" |
| 14 #include "base/strings/stringprintf.h" | 14 #include "base/strings/stringprintf.h" |
| 15 #include "services/shell/public/interfaces/connector.mojom.h" | 15 #include "services/service_manager/public/interfaces/connector.mojom.h" |
| 16 #include "services/ui/common/types.h" | 16 #include "services/ui/common/types.h" |
| 17 #include "services/ui/common/util.h" | 17 #include "services/ui/common/util.h" |
| 18 #include "services/ui/public/interfaces/window_tree.mojom.h" | 18 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 19 #include "services/ui/surfaces/display_compositor.h" | 19 #include "services/ui/surfaces/display_compositor.h" |
| 20 #include "services/ui/ws/default_access_policy.h" | 20 #include "services/ui/ws/default_access_policy.h" |
| 21 #include "services/ui/ws/display_binding.h" | 21 #include "services/ui/ws/display_binding.h" |
| 22 #include "services/ui/ws/ids.h" | 22 #include "services/ui/ws/ids.h" |
| 23 #include "services/ui/ws/platform_display.h" | 23 #include "services/ui/ws/platform_display.h" |
| 24 #include "services/ui/ws/platform_display_factory.h" | 24 #include "services/ui/ws/platform_display_factory.h" |
| 25 #include "services/ui/ws/platform_display_init_params.h" | 25 #include "services/ui/ws/platform_display_init_params.h" |
| (...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1377 client->tracker()->changes()->clear(); | 1377 client->tracker()->changes()->clear(); |
| 1378 } | 1378 } |
| 1379 | 1379 |
| 1380 // Client should not have got any messages after shutdown. | 1380 // Client should not have got any messages after shutdown. |
| 1381 EXPECT_TRUE(client->tracker()->changes()->empty()); | 1381 EXPECT_TRUE(client->tracker()->changes()->empty()); |
| 1382 } | 1382 } |
| 1383 | 1383 |
| 1384 } // namespace test | 1384 } // namespace test |
| 1385 } // namespace ws | 1385 } // namespace ws |
| 1386 } // namespace ui | 1386 } // namespace ui |
| OLD | NEW |