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 #ifndef MOJO_SERVICES_MEDIA_FACTORY_MEDIA_PLAYER_IMPL_H_ | 5 #ifndef MOJO_SERVICES_MEDIA_FACTORY_MEDIA_PLAYER_IMPL_H_ |
6 #define MOJO_SERVICES_MEDIA_FACTORY_MEDIA_PLAYER_IMPL_H_ | 6 #define MOJO_SERVICES_MEDIA_FACTORY_MEDIA_PLAYER_IMPL_H_ |
7 | 7 |
8 #include <limits> | 8 #include <limits> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "mojo/public/cpp/application/application_impl.h" | |
12 #include "mojo/public/cpp/bindings/binding.h" | 11 #include "mojo/public/cpp/bindings/binding.h" |
13 #include "mojo/services/media/common/cpp/timeline.h" | 12 #include "mojo/services/media/common/cpp/timeline.h" |
14 #include "mojo/services/media/common/cpp/timeline_function.h" | 13 #include "mojo/services/media/common/cpp/timeline_function.h" |
15 #include "mojo/services/media/common/interfaces/media_transport.mojom.h" | 14 #include "mojo/services/media/common/interfaces/media_transport.mojom.h" |
16 #include "mojo/services/media/control/interfaces/media_factory.mojom.h" | 15 #include "mojo/services/media/control/interfaces/media_factory.mojom.h" |
17 #include "mojo/services/media/core/interfaces/seeking_reader.mojom.h" | 16 #include "mojo/services/media/core/interfaces/seeking_reader.mojom.h" |
18 #include "mojo/services/media/core/interfaces/timeline_controller.mojom.h" | 17 #include "mojo/services/media/core/interfaces/timeline_controller.mojom.h" |
19 #include "services/media/common/mojo_publisher.h" | 18 #include "services/media/common/mojo_publisher.h" |
20 #include "services/media/factory_service/factory_service.h" | 19 #include "services/media/factory_service/factory_service.h" |
21 #include "services/media/framework/util/callback_joiner.h" | 20 #include "services/media/framework/util/callback_joiner.h" |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 TimelineFunction timeline_function_; | 123 TimelineFunction timeline_function_; |
125 CallbackJoiner set_transform_joiner_; | 124 CallbackJoiner set_transform_joiner_; |
126 MediaMetadataPtr metadata_; | 125 MediaMetadataPtr metadata_; |
127 MojoPublisher<GetStatusCallback> status_publisher_; | 126 MojoPublisher<GetStatusCallback> status_publisher_; |
128 }; | 127 }; |
129 | 128 |
130 } // namespace media | 129 } // namespace media |
131 } // namespace mojo | 130 } // namespace mojo |
132 | 131 |
133 #endif // MOJO_SERVICES_MEDIA_FACTORY_MEDIA_PLAYER_IMPL_H_ | 132 #endif // MOJO_SERVICES_MEDIA_FACTORY_MEDIA_PLAYER_IMPL_H_ |
OLD | NEW |