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

Unified Diff: media/mojo/clients/mojo_cdm_factory.cc

Issue 2420253002: Rename shell namespace to service_manager (Closed)
Patch Set: . Created 4 years, 2 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/clients/mojo_cdm_factory.h ('k') | media/mojo/clients/mojo_decoder_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/clients/mojo_cdm_factory.cc
diff --git a/media/mojo/clients/mojo_cdm_factory.cc b/media/mojo/clients/mojo_cdm_factory.cc
index 19a54418e312efbb6fefe9d2b681dfba045061f4..3837b0f57d238d3b1c0c3b595bf3e17cd2b928ab 100644
--- a/media/mojo/clients/mojo_cdm_factory.cc
+++ b/media/mojo/clients/mojo_cdm_factory.cc
@@ -17,7 +17,7 @@
namespace media {
MojoCdmFactory::MojoCdmFactory(
- shell::mojom::InterfaceProvider* interface_provider)
+ service_manager::mojom::InterfaceProvider* interface_provider)
: interface_provider_(interface_provider) {
DCHECK(interface_provider_);
}
@@ -51,8 +51,8 @@ void MojoCdmFactory::Create(
}
mojom::ContentDecryptionModulePtr cdm_ptr;
- shell::GetInterface<mojom::ContentDecryptionModule>(interface_provider_,
- &cdm_ptr);
+ service_manager::GetInterface<mojom::ContentDecryptionModule>(
+ interface_provider_, &cdm_ptr);
MojoCdm::Create(key_system, security_origin, cdm_config, std::move(cdm_ptr),
session_message_cb, session_closed_cb, session_keys_change_cb,
« no previous file with comments | « media/mojo/clients/mojo_cdm_factory.h ('k') | media/mojo/clients/mojo_decoder_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698