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

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

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/service_factory_impl.h ('k') | media/mojo/services/test_manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/services/service_factory_impl.cc
diff --git a/media/mojo/services/service_factory_impl.cc b/media/mojo/services/service_factory_impl.cc
index 2d07b3955644468a2a31585e269e33efd8e153d3..914a461b1073d0cc0b1516078a0be2a392a3b318 100644
--- a/media/mojo/services/service_factory_impl.cc
+++ b/media/mojo/services/service_factory_impl.cc
@@ -26,7 +26,7 @@
namespace media {
ServiceFactoryImpl::ServiceFactoryImpl(
- mojo::InterfaceRequest<interfaces::ServiceFactory> request,
+ mojo::InterfaceRequest<mojom::ServiceFactory> request,
shell::mojom::InterfaceProvider* interfaces,
scoped_refptr<MediaLog> media_log,
std::unique_ptr<shell::ShellConnectionRef> connection_ref,
@@ -43,10 +43,10 @@ ServiceFactoryImpl::~ServiceFactoryImpl() {
DVLOG(1) << __FUNCTION__;
}
-// interfaces::ServiceFactory implementation.
+// mojom::ServiceFactory implementation.
void ServiceFactoryImpl::CreateAudioDecoder(
- mojo::InterfaceRequest<interfaces::AudioDecoder> request) {
+ mojo::InterfaceRequest<mojom::AudioDecoder> request) {
#if defined(ENABLE_MOJO_AUDIO_DECODER)
scoped_refptr<base::SingleThreadTaskRunner> task_runner(
base::MessageLoop::current()->task_runner());
@@ -64,7 +64,7 @@ void ServiceFactoryImpl::CreateAudioDecoder(
}
void ServiceFactoryImpl::CreateRenderer(
- mojo::InterfaceRequest<interfaces::Renderer> request) {
+ mojo::InterfaceRequest<mojom::Renderer> request) {
#if defined(ENABLE_MOJO_RENDERER)
// The created object is owned by the pipe.
// The audio and video sinks are owned by the client.
@@ -93,7 +93,7 @@ void ServiceFactoryImpl::CreateRenderer(
}
void ServiceFactoryImpl::CreateCdm(
- mojo::InterfaceRequest<interfaces::ContentDecryptionModule> request) {
+ mojo::InterfaceRequest<mojom::ContentDecryptionModule> request) {
#if defined(ENABLE_MOJO_CDM)
CdmFactory* cdm_factory = GetCdmFactory();
if (!cdm_factory)
« no previous file with comments | « media/mojo/services/service_factory_impl.h ('k') | media/mojo/services/test_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698