Fix build bustage.

This commit is contained in:
wolfbeast 2019-03-16 13:54:20 +01:00 • committed by Roy Tam
commit afd64584b1
2 changed files with 21 additions and 2 deletions

View file

@ -51,6 +51,10 @@ public:
explicit CDMWrapper(cdm::ContentDecryptionModule_9* aCDM,
WidevineDecryptor* aDecryptor);
cdm::ContentDecryptionModule_9* GetCDM() const { return mCDM; }
void OnStorageId(uint32_t aVersion, const uint8_t* aStorageId,
uint32_t aStorageIdSize) {
mCDM->OnStorageId(aVersion, aStorageId, aStorageIdSize);
}
private:
~CDMWrapper();
cdm::ContentDecryptionModule_9* mCDM;