OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "mojo/public/cpp/application/application_impl.h" | |
6 #include "mojo/public/cpp/application/application_test_base.h" | 5 #include "mojo/public/cpp/application/application_test_base.h" |
7 #include "mojo/public/cpp/application/connect.h" | 6 #include "mojo/public/cpp/application/connect.h" |
8 #include "mojo/public/cpp/bindings/synchronous_interface_ptr.h" | 7 #include "mojo/public/cpp/bindings/synchronous_interface_ptr.h" |
9 #include "mojo/public/cpp/system/macros.h" | 8 #include "mojo/public/cpp/system/macros.h" |
10 #include "mojo/services/gfx/composition/interfaces/compositor.mojom-sync.h" | 9 #include "mojo/services/gfx/composition/interfaces/compositor.mojom-sync.h" |
11 #include "mojo/services/gfx/composition/interfaces/scheduling.mojom-sync.h" | 10 #include "mojo/services/gfx/composition/interfaces/scheduling.mojom-sync.h" |
12 #include "mojo/services/gpu/interfaces/context_provider.mojom.h" | 11 #include "mojo/services/gpu/interfaces/context_provider.mojom.h" |
13 #include "mojo/services/native_viewport/interfaces/native_viewport.mojom.h" | 12 #include "mojo/services/native_viewport/interfaces/native_viewport.mojom.h" |
14 | 13 |
15 namespace test { | 14 namespace test { |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 mojo::gfx::composition::kSceneVersionNone, | 115 mojo::gfx::composition::kSceneVersionNone, |
117 viewport.Pass()); | 116 viewport.Pass()); |
118 | 117 |
119 SynchronousFrameSchedulerPtr scheduler; | 118 SynchronousFrameSchedulerPtr scheduler; |
120 scene->GetScheduler(mojo::GetSynchronousProxy(&scheduler)); | 119 scene->GetScheduler(mojo::GetSynchronousProxy(&scheduler)); |
121 TestScheduler(scheduler.Pass()); | 120 TestScheduler(scheduler.Pass()); |
122 } | 121 } |
123 | 122 |
124 } // namespace | 123 } // namespace |
125 } // namespace mojo | 124 } // namespace mojo |
OLD | NEW |