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

Unified Diff: media/cdm/supported_cdm_versions.cc

Issue 2280433002: Remove CDM_7 support (Closed)
Patch Set: Created 4 years, 4 months 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
« no previous file with comments | « media/cdm/ppapi/ppapi_cdm_adapter.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cdm/supported_cdm_versions.cc
diff --git a/media/cdm/supported_cdm_versions.cc b/media/cdm/supported_cdm_versions.cc
index 4c007e3f302931327fe0b98567b9aabd01efef49..281ca7ebeccc07a9b35990ab28880498f43714b9 100644
--- a/media/cdm/supported_cdm_versions.cc
+++ b/media/cdm/supported_cdm_versions.cc
@@ -25,7 +25,6 @@ bool IsSupportedCdmInterfaceVersion(int version) {
switch (version) {
// Supported versions in decreasing order.
case cdm::ContentDecryptionModule_8::kVersion:
- case cdm::ContentDecryptionModule_7::kVersion:
return true;
default:
return false;
@@ -39,7 +38,6 @@ bool IsSupportedCdmHostVersion(int version) {
switch (version) {
// Supported versions in decreasing order.
case cdm::Host_8::kVersion:
- case cdm::Host_7::kVersion:
return true;
default:
return false;
« no previous file with comments | « media/cdm/ppapi/ppapi_cdm_adapter.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698