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

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: Remove CHECKs on GPU side. 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
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 aec2cb1c06e95d4e310db90421c1088272bdc4e0..2a4420ce6bf1c2aecc3dc3506e8d82b870cfbf83 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)

Powered by Google App Engine
This is Rietveld 408576698