| Index: content/public/browser/cdm_registry.h
|
| diff --git a/content/public/browser/cdm_service.h b/content/public/browser/cdm_registry.h
|
| similarity index 79%
|
| rename from content/public/browser/cdm_service.h
|
| rename to content/public/browser/cdm_registry.h
|
| index 58d59e07032c4186ba6f246bb42caa5e0aa54c2e..242331ff4f2b8f9496c5d1c467816c7073db6d01 100644
|
| --- a/content/public/browser/cdm_service.h
|
| +++ b/content/public/browser/cdm_registry.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CONTENT_PUBLIC_BROWSER_CDM_SERVICE_H_
|
| -#define CONTENT_PUBLIC_BROWSER_CDM_SERVICE_H_
|
| +#ifndef CONTENT_PUBLIC_BROWSER_CDM_REGISTRY_H_
|
| +#define CONTENT_PUBLIC_BROWSER_CDM_REGISTRY_H_
|
|
|
| #include <vector>
|
|
|
| @@ -14,12 +14,12 @@ namespace content {
|
| struct CdmInfo;
|
|
|
| // Keeps track of the Content Decryption Modules that are available.
|
| -class CONTENT_EXPORT CdmService {
|
| +class CONTENT_EXPORT CdmRegistry {
|
| public:
|
| - // Returns the CdmService singleton.
|
| - static CdmService* GetInstance();
|
| + // Returns the CdmRegistry singleton.
|
| + static CdmRegistry* GetInstance();
|
|
|
| - virtual ~CdmService() {}
|
| + virtual ~CdmRegistry() {}
|
|
|
| // Must be called on the instance to finish initialization.
|
| virtual void Init() = 0;
|
| @@ -39,4 +39,4 @@ class CONTENT_EXPORT CdmService {
|
|
|
| } // namespace content
|
|
|
| -#endif // CONTENT_PUBLIC_BROWSER_CDM_SERVICE_H_
|
| +#endif // CONTENT_PUBLIC_BROWSER_CDM_REGISTRY_H_
|
|
|