| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 MEDIA_MOJO_SERVICES_INTERFACE_FACTORY_IMPL_H_ | 5 #ifndef MEDIA_MOJO_SERVICES_INTERFACE_FACTORY_IMPL_H_ |
| 6 #define MEDIA_MOJO_SERVICES_INTERFACE_FACTORY_IMPL_H_ | 6 #define MEDIA_MOJO_SERVICES_INTERFACE_FACTORY_IMPL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "media/mojo/interfaces/interface_factory.mojom.h" | 11 #include "media/mojo/interfaces/interface_factory.mojom.h" |
| 12 #include "media/mojo/services/mojo_cdm_service_context.h" | 12 #include "media/mojo/services/mojo_cdm_service_context.h" |
| 13 #include "media/mojo/services/strong_binding_set.h" | 13 #include "mojo/public/cpp/bindings/strong_binding_set.h" |
| 14 #include "services/service_manager/public/cpp/connector.h" | 14 #include "services/service_manager/public/cpp/connector.h" |
| 15 #include "services/service_manager/public/cpp/service_context_ref.h" | 15 #include "services/service_manager/public/cpp/service_context_ref.h" |
| 16 | 16 |
| 17 namespace media { | 17 namespace media { |
| 18 | 18 |
| 19 class CdmFactory; | 19 class CdmFactory; |
| 20 class MediaLog; | 20 class MediaLog; |
| 21 class MojoMediaClient; | 21 class MojoMediaClient; |
| 22 class RendererFactory; | 22 class RendererFactory; |
| 23 | 23 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 42 RendererFactory* GetRendererFactory(); | 42 RendererFactory* GetRendererFactory(); |
| 43 #endif // defined(ENABLE_MOJO_RENDERER) | 43 #endif // defined(ENABLE_MOJO_RENDERER) |
| 44 | 44 |
| 45 #if defined(ENABLE_MOJO_CDM) | 45 #if defined(ENABLE_MOJO_CDM) |
| 46 CdmFactory* GetCdmFactory(); | 46 CdmFactory* GetCdmFactory(); |
| 47 #endif // defined(ENABLE_MOJO_CDM) | 47 #endif // defined(ENABLE_MOJO_CDM) |
| 48 | 48 |
| 49 MojoCdmServiceContext cdm_service_context_; | 49 MojoCdmServiceContext cdm_service_context_; |
| 50 | 50 |
| 51 #if defined(ENABLE_MOJO_AUDIO_DECODER) | 51 #if defined(ENABLE_MOJO_AUDIO_DECODER) |
| 52 StrongBindingSet<mojom::AudioDecoder> audio_decoder_bindings_; | 52 mojo::StrongBindingSet<mojom::AudioDecoder> audio_decoder_bindings_; |
| 53 #endif // defined(ENABLE_MOJO_AUDIO_DECODER) | 53 #endif // defined(ENABLE_MOJO_AUDIO_DECODER) |
| 54 | 54 |
| 55 #if defined(ENABLE_MOJO_VIDEO_DECODER) | 55 #if defined(ENABLE_MOJO_VIDEO_DECODER) |
| 56 StrongBindingSet<mojom::VideoDecoder> video_decoder_bindings_; | 56 mojo::StrongBindingSet<mojom::VideoDecoder> video_decoder_bindings_; |
| 57 #endif // defined(ENABLE_MOJO_VIDEO_DECODER) | 57 #endif // defined(ENABLE_MOJO_VIDEO_DECODER) |
| 58 | 58 |
| 59 #if defined(ENABLE_MOJO_RENDERER) | 59 #if defined(ENABLE_MOJO_RENDERER) |
| 60 std::unique_ptr<RendererFactory> renderer_factory_; | 60 std::unique_ptr<RendererFactory> renderer_factory_; |
| 61 StrongBindingSet<mojom::Renderer> renderer_bindings_; | 61 mojo::StrongBindingSet<mojom::Renderer> renderer_bindings_; |
| 62 #endif // defined(ENABLE_MOJO_RENDERER) | 62 #endif // defined(ENABLE_MOJO_RENDERER) |
| 63 | 63 |
| 64 #if defined(ENABLE_MOJO_CDM) | 64 #if defined(ENABLE_MOJO_CDM) |
| 65 std::unique_ptr<CdmFactory> cdm_factory_; | 65 std::unique_ptr<CdmFactory> cdm_factory_; |
| 66 service_manager::mojom::InterfaceProviderPtr interfaces_; | 66 service_manager::mojom::InterfaceProviderPtr interfaces_; |
| 67 StrongBindingSet<mojom::ContentDecryptionModule> cdm_bindings_; | 67 mojo::StrongBindingSet<mojom::ContentDecryptionModule> cdm_bindings_; |
| 68 #endif // defined(ENABLE_MOJO_CDM) | 68 #endif // defined(ENABLE_MOJO_CDM) |
| 69 | 69 |
| 70 scoped_refptr<MediaLog> media_log_; | 70 scoped_refptr<MediaLog> media_log_; |
| 71 std::unique_ptr<service_manager::ServiceContextRef> connection_ref_; | 71 std::unique_ptr<service_manager::ServiceContextRef> connection_ref_; |
| 72 MojoMediaClient* mojo_media_client_; | 72 MojoMediaClient* mojo_media_client_; |
| 73 | 73 |
| 74 DISALLOW_COPY_AND_ASSIGN(InterfaceFactoryImpl); | 74 DISALLOW_COPY_AND_ASSIGN(InterfaceFactoryImpl); |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace media | 77 } // namespace media |
| 78 | 78 |
| 79 #endif // MEDIA_MOJO_SERVICES_INTERFACE_FACTORY_IMPL_H_ | 79 #endif // MEDIA_MOJO_SERVICES_INTERFACE_FACTORY_IMPL_H_ |
| OLD | NEW |