| 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 "components/mus/public/interfaces/window_tree.mojom.h" | 13 #include "components/mus/public/interfaces/window_tree.mojom.h" |
| 14 #include "components/mus/public/interfaces/window_tree_host.mojom.h" | 14 #include "components/mus/public/interfaces/window_tree_host.mojom.h" |
| 15 #include "components/mus/ws/ids.h" | 15 #include "components/mus/ws/ids.h" |
| 16 #include "components/mus/ws/test_change_tracker.h" | 16 #include "components/mus/ws/test_change_tracker.h" |
| 17 #include "mojo/application/public/cpp/application_delegate.h" | |
| 18 #include "mojo/application/public/cpp/application_impl.h" | |
| 19 #include "mojo/application/public/cpp/application_test_base.h" | |
| 20 #include "mojo/converters/geometry/geometry_type_converters.h" | 17 #include "mojo/converters/geometry/geometry_type_converters.h" |
| 18 #include "mojo/shell/public/cpp/application_delegate.h" |
| 19 #include "mojo/shell/public/cpp/application_impl.h" |
| 20 #include "mojo/shell/public/cpp/application_test_base.h" |
| 21 | 21 |
| 22 using mojo::ApplicationConnection; | 22 using mojo::ApplicationConnection; |
| 23 using mojo::ApplicationDelegate; | 23 using mojo::ApplicationDelegate; |
| 24 using mojo::Array; | 24 using mojo::Array; |
| 25 using mojo::Callback; | 25 using mojo::Callback; |
| 26 using mojo::InterfaceRequest; | 26 using mojo::InterfaceRequest; |
| 27 using mojo::RectPtr; | 27 using mojo::RectPtr; |
| 28 using mojo::String; | 28 using mojo::String; |
| 29 using mus::mojom::ERROR_CODE_NONE; | 29 using mus::mojom::ERROR_CODE_NONE; |
| 30 using mus::mojom::ErrorCode; | 30 using mus::mojom::ErrorCode; |
| (...skipping 1744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1775 // originating connection. | 1775 // originating connection. |
| 1776 | 1776 |
| 1777 // TODO(sky): make sure coverage of what was | 1777 // TODO(sky): make sure coverage of what was |
| 1778 // WindowManagerTest.SecondEmbedRoot_InitService and | 1778 // WindowManagerTest.SecondEmbedRoot_InitService and |
| 1779 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window | 1779 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window |
| 1780 // manager | 1780 // manager |
| 1781 // tests. | 1781 // tests. |
| 1782 | 1782 |
| 1783 } // namespace ws | 1783 } // namespace ws |
| 1784 } // namespace mus | 1784 } // namespace mus |
| OLD | NEW |