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

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: Created 4 years, 8 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 ede1fa681ec3126acf1ba480aabe96124054e83f..c6b3469cd9d6bf8be07db49174dccb34795778d5 100644
--- a/media/mojo/services/service_factory_impl.h
+++ b/media/mojo/services/service_factory_impl.h
@@ -41,11 +41,13 @@ class ServiceFactoryImpl : public interfaces::ServiceFactory {
// interfaces::ServiceFactory implementation.
void CreateAudioDecoder(
- mojo::InterfaceRequest<interfaces::AudioDecoder> audio_decoder) final;
+ mojo::InterfaceRequest<interfaces::AudioDecoder> request) final;
void CreateRenderer(
- mojo::InterfaceRequest<interfaces::Renderer> renderer) final;
- void CreateCdm(
- mojo::InterfaceRequest<interfaces::ContentDecryptionModule> cdm) final;
+ mojo::InterfaceRequest<interfaces::Renderer> request) final;
+ void CreateCdm(mojo::InterfaceRequest<interfaces::ContentDecryptionModule>
+ request) final;
+ void CreateVideoDecoder(
+ mojo::InterfaceRequest<interfaces::VideoDecoder> request) final;
xhwang 2016/04/20 21:09:27 nit: this could be interfaces::VideoDecoderRequest
sandersd (OOO until July 31) 2016/05/03 00:54:37 Done.
private:
#if defined(ENABLE_MOJO_RENDERER)

Powered by Google App Engine
This is Rietveld 408576698