| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_BROWSER_MEDIA_CDM_SERVICE_IMPL_H_ | |
| 6 #define CONTENT_BROWSER_MEDIA_CDM_SERVICE_IMPL_H_ | |
| 7 | |
| 8 #include <vector> | |
| 9 | |
| 10 #include "base/lazy_instance.h" | |
| 11 #include "base/macros.h" | |
| 12 #include "content/common/content_export.h" | |
| 13 #include "content/public/browser/cdm_service.h" | |
| 14 | |
| 15 namespace content { | |
| 16 | |
| 17 struct CdmInfo; | |
| 18 | |
| 19 class CONTENT_EXPORT CdmServiceImpl : NON_EXPORTED_BASE(public CdmService) { | |
| 20 public: | |
| 21 // Returns the CdmServiceImpl singleton. | |
| 22 static CdmServiceImpl* GetInstance(); | |
| 23 | |
| 24 // CdmService implementation. | |
| 25 void Init() override; | |
| 26 void RegisterCdm(const CdmInfo& info) override; | |
| 27 const std::vector<CdmInfo>& GetAllRegisteredCdms() override; | |
| 28 | |
| 29 private: | |
| 30 friend struct base::DefaultLazyInstanceTraits<CdmServiceImpl>; | |
| 31 friend class CdmServiceImplTest; | |
| 32 | |
| 33 CdmServiceImpl(); | |
| 34 ~CdmServiceImpl() override; | |
| 35 | |
| 36 std::vector<CdmInfo> cdms_; | |
| 37 | |
| 38 DISALLOW_COPY_AND_ASSIGN(CdmServiceImpl); | |
| 39 }; | |
| 40 | |
| 41 } // namespace content | |
| 42 | |
| 43 #endif // CONTENT_BROWSER_MEDIA_CDM_SERVICE_IMPL_H_ | |
| OLD | NEW |