Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(838)

Unified Diff: media/mojo/services/service_factory_impl.h

Issue 1899363002: Finish plumbing MojoVideoDecoder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Windows needs some more headers, apaprently. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/mojo/services/mojo_video_decoder_service.cc ('k') | media/mojo/services/service_factory_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/services/service_factory_impl.h
diff --git a/media/mojo/services/service_factory_impl.h b/media/mojo/services/service_factory_impl.h
index fe9af8f59281af82cbad615cb9203d7b1950f9eb..ce970c9c0dccf4c5f9a398576d5f8f0ca7240743 100644
--- a/media/mojo/services/service_factory_impl.h
+++ b/media/mojo/services/service_factory_impl.h
@@ -37,11 +37,10 @@ class ServiceFactoryImpl : public mojom::ServiceFactory {
~ServiceFactoryImpl() final;
// mojom::ServiceFactory implementation.
- void CreateAudioDecoder(
- mojo::InterfaceRequest<mojom::AudioDecoder> audio_decoder) final;
- void CreateRenderer(mojo::InterfaceRequest<mojom::Renderer> renderer) final;
- void CreateCdm(
- mojo::InterfaceRequest<mojom::ContentDecryptionModule> cdm) final;
+ void CreateAudioDecoder(mojom::AudioDecoderRequest request) final;
+ void CreateVideoDecoder(mojom::VideoDecoderRequest request) final;
+ void CreateRenderer(mojom::RendererRequest request) final;
+ void CreateCdm(mojom::ContentDecryptionModuleRequest request) final;
private:
#if defined(ENABLE_MOJO_RENDERER)
« no previous file with comments | « media/mojo/services/mojo_video_decoder_service.cc ('k') | media/mojo/services/service_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698