1 // Copyright 2013 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.
5 #ifndef MEDIA_CDM_PPAPI_SUPPORTED_CDM_VERSIONS_H_
6 #define MEDIA_CDM_PPAPI_SUPPORTED_CDM_VERSIONS_H_
8 #include "media/cdm/ppapi/api/content_decryption_module.h"
12 bool IsSupportedCdmModuleVersion(int version
) {
15 case CDM_MODULE_VERSION
:
22 bool IsSupportedCdmInterfaceVersion(int version
) {
23 static_assert(cdm::ContentDecryptionModule::kVersion
==
24 cdm::ContentDecryptionModule_8::kVersion
,
25 "update the code below");
27 // Supported versions in decreasing order.
28 case cdm::ContentDecryptionModule_8::kVersion
:
29 case cdm::ContentDecryptionModule_7::kVersion
:
36 bool IsSupportedCdmHostVersion(int version
) {
37 static_assert(cdm::ContentDecryptionModule::Host::kVersion
==
38 cdm::ContentDecryptionModule_8::Host::kVersion
,
39 "update the code below");
41 // Supported versions in decreasing order.
42 case cdm::Host_8::kVersion
:
43 case cdm::Host_7::kVersion
:
52 #endif // MEDIA_CDM_PPAPI_SUPPORTED_CDM_VERSIONS_H_