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

Unified Diff: content/gpu/gpu_service_factory.cc

Issue 2434673002: media: Rename MojoMediaApplication to MediaService (Closed)
Patch Set: media: Rename MojoMediaApplication to MediaService 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
Index: content/gpu/gpu_service_factory.cc
diff --git a/content/gpu/gpu_service_factory.cc b/content/gpu/gpu_service_factory.cc
index 10dd6a2e67c1c5d6b4cc83d655dfd3d5cd24e243..412f78238914245113f77946b321e853ae12ddfb 100644
--- a/content/gpu/gpu_service_factory.cc
+++ b/content/gpu/gpu_service_factory.cc
@@ -7,7 +7,7 @@
#if defined(ENABLE_MOJO_MEDIA_IN_GPU_PROCESS)
#include "base/bind.h"
#include "base/bind_helpers.h"
-#include "media/mojo/services/mojo_media_application_factory.h" // nogncheck
+#include "media/mojo/services/media_service_factory.h" // nogncheck
#endif
namespace content {
@@ -19,7 +19,7 @@ GpuServiceFactory::~GpuServiceFactory() {}
void GpuServiceFactory::RegisterServices(ServiceMap* services) {
#if defined(ENABLE_MOJO_MEDIA_IN_GPU_PROCESS)
ServiceInfo info;
- info.factory = base::Bind(&media::CreateMojoMediaApplication);
+ info.factory = base::Bind(&media::CreateMediaService);
info.use_own_thread = true;
services->insert(std::make_pair("service:media", info));
#endif
« no previous file with comments | « chromecast/browser/cast_content_browser_client.cc ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698