Implement Cdm::listStoredLicenses() code review changes

[ Merge of http://go/wvgerrit/23822 ]

This merges back to master, code review related changes when
"Implement Cdm::listStoredLicenses()" was merged from master
(http://go/wvgerrit/23189) to oc-dev (http://go/wvgerrit/23600)

Bug: 34628115
Test: WV unit/integration tests
Change-Id: Idf3acb0ff668d1cc3fe2e6fd400daa183bdb340b
This commit is contained in:
Rahul Frias
2018-01-04 10:27:44 -08:00
parent a483c18c59
commit 17ccdcf351
2 changed files with 3 additions and 2 deletions

View File

@@ -174,8 +174,8 @@ class CdmEngine {
// (origin-specific) file system. // (origin-specific) file system.
virtual bool IsProvisioned(CdmSecurityLevel security_level); virtual bool IsProvisioned(CdmSecurityLevel security_level);
// Remove DRM certificate from the current (origin-specific) // Remove device DRM certificate from the current (origin-specific) file
// file system. This will force the device to reprovision itself. // system. This will force the device to reprovision itself.
virtual CdmResponseType Unprovision(CdmSecurityLevel security_level); virtual CdmResponseType Unprovision(CdmSecurityLevel security_level);
// Return the list of key_set_ids stored on the current (origin-specific) // Return the list of key_set_ids stored on the current (origin-specific)

View File

@@ -606,6 +606,7 @@ void PrintTo(const enum CdmResponseType& value, ::std::ostream* os) {
break; break;
case PARSE_RESPONSE_ERROR_4: *os << "PARSE_RESPONSE_ERROR_4"; case PARSE_RESPONSE_ERROR_4: *os << "PARSE_RESPONSE_ERROR_4";
break; break;
default: default:
*os << "Unknown CdmResponseType"; *os << "Unknown CdmResponseType";
break; break;