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

Unified Diff: content/browser/media/cdm_service_impl.h

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_service_impl.h
diff --git a/content/browser/media/cdm_service_impl.h b/content/browser/media/cdm_service_impl.h
deleted file mode 100644
index 97f873c595a6e6ff281ab4e31918a6c3b041112a..0000000000000000000000000000000000000000
--- a/content/browser/media/cdm_service_impl.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_BROWSER_MEDIA_CDM_SERVICE_IMPL_H_
-#define CONTENT_BROWSER_MEDIA_CDM_SERVICE_IMPL_H_
-
-#include <vector>
-
-#include "base/lazy_instance.h"
-#include "base/macros.h"
-#include "content/common/content_export.h"
-#include "content/public/browser/cdm_service.h"
-
-namespace content {
-
-struct CdmInfo;
-
-class CONTENT_EXPORT CdmServiceImpl : NON_EXPORTED_BASE(public CdmService) {
- public:
- // Returns the CdmServiceImpl singleton.
- static CdmServiceImpl* GetInstance();
-
- // CdmService implementation.
- void Init() override;
- void RegisterCdm(const CdmInfo& info) override;
- const std::vector<CdmInfo>& GetAllRegisteredCdms() override;
-
- private:
- friend struct base::DefaultLazyInstanceTraits<CdmServiceImpl>;
- friend class CdmServiceImplTest;
-
- CdmServiceImpl();
- ~CdmServiceImpl() override;
-
- std::vector<CdmInfo> cdms_;
-
- DISALLOW_COPY_AND_ASSIGN(CdmServiceImpl);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_MEDIA_CDM_SERVICE_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698