| 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 "base/strings/stringprintf.h" | 8 #include "base/strings/stringprintf.h" |
| 9 #include "components/mus/ids.h" | |
| 10 #include "components/mus/public/interfaces/view_tree.mojom.h" | 9 #include "components/mus/public/interfaces/view_tree.mojom.h" |
| 11 #include "components/mus/public/interfaces/view_tree_host.mojom.h" | 10 #include "components/mus/public/interfaces/view_tree_host.mojom.h" |
| 12 #include "components/mus/test_change_tracker.h" | 11 #include "components/mus/vm/ids.h" |
| 12 #include "components/mus/vm/test_change_tracker.h" |
| 13 #include "mojo/application/public/cpp/application_delegate.h" | 13 #include "mojo/application/public/cpp/application_delegate.h" |
| 14 #include "mojo/application/public/cpp/application_impl.h" | 14 #include "mojo/application/public/cpp/application_impl.h" |
| 15 #include "mojo/application/public/cpp/application_test_base.h" | 15 #include "mojo/application/public/cpp/application_test_base.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::ERROR_CODE_NONE; | 21 using mojo::ERROR_CODE_NONE; |
| 22 using mojo::ErrorCode; | 22 using mojo::ErrorCode; |
| (...skipping 1647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1670 // TODO(sky): need to better track changes to initial connection. For example, | 1670 // TODO(sky): need to better track changes to initial connection. For example, |
| 1671 // that SetBounsdViews/AddView and the like don't result in messages to the | 1671 // that SetBounsdViews/AddView and the like don't result in messages to the |
| 1672 // originating connection. | 1672 // originating connection. |
| 1673 | 1673 |
| 1674 // TODO(sky): make sure coverage of what was | 1674 // TODO(sky): make sure coverage of what was |
| 1675 // ViewManagerTest.SecondEmbedRoot_InitService and | 1675 // ViewManagerTest.SecondEmbedRoot_InitService and |
| 1676 // ViewManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window manager | 1676 // ViewManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window manager |
| 1677 // tests. | 1677 // tests. |
| 1678 | 1678 |
| 1679 } // namespace mus | 1679 } // namespace mus |
| OLD | NEW |