| 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_SINK_IMPL_H_ | 5 #ifndef MOJO_SERVICES_MEDIA_FACTORY_MEDIA_SINK_IMPL_H_ |
| 6 #define MOJO_SERVICES_MEDIA_FACTORY_MEDIA_SINK_IMPL_H_ | 6 #define MOJO_SERVICES_MEDIA_FACTORY_MEDIA_SINK_IMPL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "mojo/public/cpp/application/application_impl.h" | |
| 11 #include "mojo/public/cpp/bindings/binding.h" | 10 #include "mojo/public/cpp/bindings/binding.h" |
| 12 #include "mojo/services/media/control/interfaces/media_sink.mojom.h" | 11 #include "mojo/services/media/control/interfaces/media_sink.mojom.h" |
| 13 #include "mojo/services/media/core/interfaces/timeline_controller.mojom.h" | 12 #include "mojo/services/media/core/interfaces/timeline_controller.mojom.h" |
| 14 #include "services/media/factory_service/audio_track_controller.h" | 13 #include "services/media/factory_service/audio_track_controller.h" |
| 15 #include "services/media/factory_service/factory_service.h" | 14 #include "services/media/factory_service/factory_service.h" |
| 16 #include "services/media/framework/graph.h" | 15 #include "services/media/framework/graph.h" |
| 17 #include "services/media/framework/parts/decoder.h" | 16 #include "services/media/framework/parts/decoder.h" |
| 18 #include "services/media/framework_mojo/mojo_consumer.h" | 17 #include "services/media/framework_mojo/mojo_consumer.h" |
| 19 #include "services/media/framework_mojo/mojo_producer.h" | 18 #include "services/media/framework_mojo/mojo_producer.h" |
| 20 #include "services/util/cpp/incident.h" | 19 #include "services/util/cpp/incident.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 51 Graph graph_; | 50 Graph graph_; |
| 52 std::shared_ptr<MojoConsumer> consumer_; | 51 std::shared_ptr<MojoConsumer> consumer_; |
| 53 std::shared_ptr<MojoProducer> producer_; | 52 std::shared_ptr<MojoProducer> producer_; |
| 54 std::unique_ptr<AudioTrackController> controller_; | 53 std::unique_ptr<AudioTrackController> controller_; |
| 55 }; | 54 }; |
| 56 | 55 |
| 57 } // namespace media | 56 } // namespace media |
| 58 } // namespace mojo | 57 } // namespace mojo |
| 59 | 58 |
| 60 #endif // MOJO_SERVICES_MEDIA_FACTORY_MEDIA_SINK_IMPL_H_ | 59 #endif // MOJO_SERVICES_MEDIA_FACTORY_MEDIA_SINK_IMPL_H_ |
| OLD | NEW |