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 "base/bind.h" | 5 #include "base/bind.h" |
6 #include "base/message_loop/message_loop.h" | 6 #include "base/message_loop/message_loop.h" |
7 #include "base/run_loop.h" | 7 #include "base/run_loop.h" |
8 #include "mojo/public/cpp/application/application_delegate.h" | 8 #include "mojo/public/cpp/application/application_delegate.h" |
9 #include "mojo/public/cpp/application/application_impl.h" | 9 #include "mojo/public/cpp/application/application_impl.h" |
10 #include "mojo/public/cpp/application/application_test_base.h" | 10 #include "mojo/public/cpp/application/application_test_base.h" |
11 #include "mojo/services/view_manager/public/interfaces/view_manager.mojom.h" | 11 #include "mojo/services/view_manager/interfaces/view_manager.mojom.h" |
12 #include "mojo/services/window_manager/public/interfaces/window_manager.mojom.h" | 12 #include "mojo/services/window_manager/interfaces/window_manager.mojom.h" |
13 #include "mojo/services/window_manager/public/interfaces/window_manager_internal
.mojom.h" | 13 #include "mojo/services/window_manager/interfaces/window_manager_internal.mojom.
h" |
14 #include "services/view_manager/ids.h" | 14 #include "services/view_manager/ids.h" |
15 #include "services/view_manager/test_change_tracker.h" | 15 #include "services/view_manager/test_change_tracker.h" |
16 | 16 |
17 using mojo::ApplicationConnection; | 17 using mojo::ApplicationConnection; |
18 using mojo::ApplicationDelegate; | 18 using mojo::ApplicationDelegate; |
19 using mojo::Array; | 19 using mojo::Array; |
20 using mojo::Callback; | 20 using mojo::Callback; |
21 using mojo::ConnectionSpecificId; | 21 using mojo::ConnectionSpecificId; |
22 using mojo::ErrorCode; | 22 using mojo::ErrorCode; |
23 using mojo::EventPtr; | 23 using mojo::EventPtr; |
(...skipping 1463 matching lines...) Loading... |
1487 // TODO(sky): need to better track changes to initial connection. For example, | 1487 // TODO(sky): need to better track changes to initial connection. For example, |
1488 // that SetBounsdViews/AddView and the like don't result in messages to the | 1488 // that SetBounsdViews/AddView and the like don't result in messages to the |
1489 // originating connection. | 1489 // originating connection. |
1490 | 1490 |
1491 // TODO(sky): make sure coverage of what was | 1491 // TODO(sky): make sure coverage of what was |
1492 // ViewManagerTest.SecondEmbedRoot_InitService and | 1492 // ViewManagerTest.SecondEmbedRoot_InitService and |
1493 // ViewManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window manager | 1493 // ViewManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window manager |
1494 // tests. | 1494 // tests. |
1495 | 1495 |
1496 } // namespace view_manager | 1496 } // namespace view_manager |
OLD | NEW |