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 "components/view_manager/ids.h" | 8 #include "components/view_manager/ids.h" |
9 #include "components/view_manager/public/interfaces/view_manager.mojom.h" | 9 #include "components/view_manager/public/interfaces/view_manager.mojom.h" |
10 #include "components/view_manager/public/interfaces/view_manager_root.mojom.h" | 10 #include "components/view_manager/public/interfaces/view_manager_root.mojom.h" |
11 #include "components/view_manager/test_change_tracker.h" | 11 #include "components/view_manager/test_change_tracker.h" |
12 #include "mojo/application/application_test_base_chromium.h" | |
13 #include "mojo/application/public/cpp/application_delegate.h" | 12 #include "mojo/application/public/cpp/application_delegate.h" |
14 #include "mojo/application/public/cpp/application_impl.h" | 13 #include "mojo/application/public/cpp/application_impl.h" |
| 14 #include "mojo/application/public/cpp/application_test_base.h" |
15 | 15 |
16 using mojo::ApplicationConnection; | 16 using mojo::ApplicationConnection; |
17 using mojo::ApplicationDelegate; | 17 using mojo::ApplicationDelegate; |
18 using mojo::Array; | 18 using mojo::Array; |
19 using mojo::Callback; | 19 using mojo::Callback; |
20 using mojo::ConnectionSpecificId; | 20 using mojo::ConnectionSpecificId; |
21 using mojo::ERROR_CODE_NONE; | 21 using mojo::ERROR_CODE_NONE; |
22 using mojo::ErrorCode; | 22 using mojo::ErrorCode; |
23 using mojo::EventPtr; | 23 using mojo::EventPtr; |
24 using mojo::Id; | 24 using mojo::Id; |
(...skipping 1419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1444 // TODO(sky): need to better track changes to initial connection. For example, | 1444 // TODO(sky): need to better track changes to initial connection. For example, |
1445 // that SetBounsdViews/AddView and the like don't result in messages to the | 1445 // that SetBounsdViews/AddView and the like don't result in messages to the |
1446 // originating connection. | 1446 // originating connection. |
1447 | 1447 |
1448 // TODO(sky): make sure coverage of what was | 1448 // TODO(sky): make sure coverage of what was |
1449 // ViewManagerTest.SecondEmbedRoot_InitService and | 1449 // ViewManagerTest.SecondEmbedRoot_InitService and |
1450 // ViewManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window manager | 1450 // ViewManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window manager |
1451 // tests. | 1451 // tests. |
1452 | 1452 |
1453 } // namespace view_manager | 1453 } // namespace view_manager |
OLD | NEW |