| 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_SERVICE_FACTORY_IMPL_H_ | 5 #ifndef MEDIA_MOJO_SERVICES_SERVICE_FACTORY_IMPL_H_ |
| 6 #define MEDIA_MOJO_SERVICES_SERVICE_FACTORY_IMPL_H_ | 6 #define MEDIA_MOJO_SERVICES_SERVICE_FACTORY_IMPL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 class ServiceFactoryImpl : public mojom::ServiceFactory { | 30 class ServiceFactoryImpl : public mojom::ServiceFactory { |
| 31 public: | 31 public: |
| 32 ServiceFactoryImpl(mojo::InterfaceRequest<mojom::ServiceFactory> request, | 32 ServiceFactoryImpl(mojo::InterfaceRequest<mojom::ServiceFactory> request, |
| 33 shell::mojom::InterfaceProvider* interfaces, | 33 shell::mojom::InterfaceProvider* interfaces, |
| 34 scoped_refptr<MediaLog> media_log, | 34 scoped_refptr<MediaLog> media_log, |
| 35 std::unique_ptr<shell::ShellConnectionRef> connection_ref, | 35 std::unique_ptr<shell::ShellConnectionRef> connection_ref, |
| 36 MojoMediaClient* mojo_media_client); | 36 MojoMediaClient* mojo_media_client); |
| 37 ~ServiceFactoryImpl() final; | 37 ~ServiceFactoryImpl() final; |
| 38 | 38 |
| 39 // mojom::ServiceFactory implementation. | 39 // mojom::ServiceFactory implementation. |
| 40 void CreateAudioDecoder( | 40 void CreateAudioDecoder(mojom::AudioDecoderRequest request) final; |
| 41 mojo::InterfaceRequest<mojom::AudioDecoder> audio_decoder) final; | 41 void CreateVideoDecoder(mojom::VideoDecoderRequest request) final; |
| 42 void CreateRenderer(mojo::InterfaceRequest<mojom::Renderer> renderer) final; | 42 void CreateRenderer(mojom::RendererRequest request) final; |
| 43 void CreateCdm( | 43 void CreateCdm(mojom::ContentDecryptionModuleRequest request) final; |
| 44 mojo::InterfaceRequest<mojom::ContentDecryptionModule> cdm) final; | |
| 45 | 44 |
| 46 private: | 45 private: |
| 47 #if defined(ENABLE_MOJO_RENDERER) | 46 #if defined(ENABLE_MOJO_RENDERER) |
| 48 RendererFactory* GetRendererFactory(); | 47 RendererFactory* GetRendererFactory(); |
| 49 | 48 |
| 50 std::unique_ptr<RendererFactory> renderer_factory_; | 49 std::unique_ptr<RendererFactory> renderer_factory_; |
| 51 #endif // defined(ENABLE_MOJO_RENDERER) | 50 #endif // defined(ENABLE_MOJO_RENDERER) |
| 52 | 51 |
| 53 #if defined(ENABLE_MOJO_CDM) | 52 #if defined(ENABLE_MOJO_CDM) |
| 54 CdmFactory* GetCdmFactory(); | 53 CdmFactory* GetCdmFactory(); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 67 #endif | 66 #endif |
| 68 scoped_refptr<MediaLog> media_log_; | 67 scoped_refptr<MediaLog> media_log_; |
| 69 std::unique_ptr<shell::ShellConnectionRef> connection_ref_; | 68 std::unique_ptr<shell::ShellConnectionRef> connection_ref_; |
| 70 | 69 |
| 71 DISALLOW_COPY_AND_ASSIGN(ServiceFactoryImpl); | 70 DISALLOW_COPY_AND_ASSIGN(ServiceFactoryImpl); |
| 72 }; | 71 }; |
| 73 | 72 |
| 74 } // namespace media | 73 } // namespace media |
| 75 | 74 |
| 76 #endif // MEDIA_MOJO_SERVICES_SERVICE_FACTORY_IMPL_H_ | 75 #endif // MEDIA_MOJO_SERVICES_SERVICE_FACTORY_IMPL_H_ |
| OLD | NEW |