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

Unified Diff: content/browser/media/cdm_registry_impl.cc

Issue 2565853003: media: Rename CdmService to CdmRegistry (Closed)
Patch Set: add missing BUILD.gn entry Created 4 years 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/browser/media/cdm_registry_impl.cc
diff --git a/content/browser/media/cdm_service_impl.cc b/content/browser/media/cdm_registry_impl.cc
similarity index 55%
rename from content/browser/media/cdm_service_impl.cc
rename to content/browser/media/cdm_registry_impl.cc
index 87e5c52f78b456655106d2d356c552990f554f9e..fba96890d70f3ad98814ee6cc8f9831153bc8ed0 100644
--- a/content/browser/media/cdm_service_impl.cc
+++ b/content/browser/media/cdm_registry_impl.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/browser/media/cdm_service_impl.h"
+#include "content/browser/media/cdm_registry_impl.h"
#include <stddef.h>
@@ -11,35 +11,35 @@
namespace content {
-static base::LazyInstance<CdmServiceImpl>::Leaky g_cdm_service =
+static base::LazyInstance<CdmRegistryImpl>::Leaky g_cdm_registry =
LAZY_INSTANCE_INITIALIZER;
// static
-CdmService* CdmService::GetInstance() {
- return CdmServiceImpl::GetInstance();
+CdmRegistry* CdmRegistry::GetInstance() {
+ return CdmRegistryImpl::GetInstance();
}
// static
-CdmServiceImpl* CdmServiceImpl::GetInstance() {
- return g_cdm_service.Pointer();
+CdmRegistryImpl* CdmRegistryImpl::GetInstance() {
+ return g_cdm_registry.Pointer();
}
-CdmServiceImpl::CdmServiceImpl() {}
+CdmRegistryImpl::CdmRegistryImpl() {}
-CdmServiceImpl::~CdmServiceImpl() {}
+CdmRegistryImpl::~CdmRegistryImpl() {}
-void CdmServiceImpl::Init() {
+void CdmRegistryImpl::Init() {
// Let embedders register CDMs.
GetContentClient()->AddContentDecryptionModules(&cdms_);
}
-void CdmServiceImpl::RegisterCdm(const CdmInfo& info) {
+void CdmRegistryImpl::RegisterCdm(const CdmInfo& info) {
// Always register new CDMs at the beginning of the list, so that
// subsequent requests get the latest.
cdms_.insert(cdms_.begin(), info);
}
-const std::vector<CdmInfo>& CdmServiceImpl::GetAllRegisteredCdms() {
+const std::vector<CdmInfo>& CdmRegistryImpl::GetAllRegisteredCdms() {
return cdms_;
}

Powered by Google App Engine
This is Rietveld 408576698