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/test_change_tracker.h" | 10 #include "components/view_manager/test_change_tracker.h" |
11 #include "components/window_manager/public/interfaces/window_manager.mojom.h" | 11 #include "components/window_manager/public/interfaces/window_manager.mojom.h" |
12 #include "components/window_manager/public/interfaces/window_manager_internal.mo
jom.h" | 12 #include "components/window_manager/public/interfaces/window_manager_internal.mo
jom.h" |
13 #include "mojo/application/application_test_base_chromium.h" | 13 #include "mojo/application/application_test_base_chromium.h" |
14 #include "third_party/mojo/src/mojo/public/cpp/application/application_delegate.
h" | 14 #include "mojo/application/public/cpp/application_delegate.h" |
15 #include "third_party/mojo/src/mojo/public/cpp/application/application_impl.h" | 15 #include "mojo/application/public/cpp/application_impl.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::ERROR_CODE_NONE; | 22 using mojo::ERROR_CODE_NONE; |
23 using mojo::ErrorCode; | 23 using mojo::ErrorCode; |
24 using mojo::EventPtr; | 24 using mojo::EventPtr; |
25 using mojo::Id; | 25 using mojo::Id; |
(...skipping 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1472 // TODO(sky): need to better track changes to initial connection. For example, | 1472 // TODO(sky): need to better track changes to initial connection. For example, |
1473 // that SetBounsdViews/AddView and the like don't result in messages to the | 1473 // that SetBounsdViews/AddView and the like don't result in messages to the |
1474 // originating connection. | 1474 // originating connection. |
1475 | 1475 |
1476 // TODO(sky): make sure coverage of what was | 1476 // TODO(sky): make sure coverage of what was |
1477 // ViewManagerTest.SecondEmbedRoot_InitService and | 1477 // ViewManagerTest.SecondEmbedRoot_InitService and |
1478 // ViewManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window manager | 1478 // ViewManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window manager |
1479 // tests. | 1479 // tests. |
1480 | 1480 |
1481 } // namespace view_manager | 1481 } // namespace view_manager |
OLD | NEW |