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

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

Issue 1977173002: Rename media::interfaces to media::mojom. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: android + chromeos files 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.h ('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 b2903b81ab3d089bf87bfc421880724ef7f02fea..aec2cb1c06e95d4e310db90421c1088272bdc4e0 100644
--- a/media/mojo/services/service_factory_impl.h
+++ b/media/mojo/services/service_factory_impl.h
@@ -27,22 +27,21 @@ class MediaLog;
class MojoMediaClient;
class RendererFactory;
-class ServiceFactoryImpl : public interfaces::ServiceFactory {
+class ServiceFactoryImpl : public mojom::ServiceFactory {
public:
- ServiceFactoryImpl(mojo::InterfaceRequest<interfaces::ServiceFactory> request,
+ ServiceFactoryImpl(mojo::InterfaceRequest<mojom::ServiceFactory> request,
shell::mojom::InterfaceProvider* interfaces,
scoped_refptr<MediaLog> media_log,
std::unique_ptr<shell::ShellConnectionRef> connection_ref,
MojoMediaClient* mojo_media_client);
~ServiceFactoryImpl() final;
- // interfaces::ServiceFactory implementation.
+ // mojom::ServiceFactory implementation.
void CreateAudioDecoder(
- mojo::InterfaceRequest<interfaces::AudioDecoder> audio_decoder) final;
- void CreateRenderer(
- mojo::InterfaceRequest<interfaces::Renderer> renderer) final;
+ mojo::InterfaceRequest<mojom::AudioDecoder> audio_decoder) final;
+ void CreateRenderer(mojo::InterfaceRequest<mojom::Renderer> renderer) final;
void CreateCdm(
- mojo::InterfaceRequest<interfaces::ContentDecryptionModule> cdm) final;
+ mojo::InterfaceRequest<mojom::ContentDecryptionModule> cdm) final;
private:
#if defined(ENABLE_MOJO_RENDERER)
@@ -58,7 +57,7 @@ class ServiceFactoryImpl : public interfaces::ServiceFactory {
#endif // defined(ENABLE_MOJO_CDM)
MojoCdmServiceContext cdm_service_context_;
- mojo::StrongBinding<interfaces::ServiceFactory> binding_;
+ mojo::StrongBinding<mojom::ServiceFactory> binding_;
shell::mojom::InterfaceProvider* interfaces_;
scoped_refptr<MediaLog> media_log_;
std::unique_ptr<shell::ShellConnectionRef> connection_ref_;
« no previous file with comments | « media/mojo/services/mojo_video_decoder.h ('k') | media/mojo/services/service_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698