mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
Build bustage fixes
This commit is contained in:
parent
7b93eff482
commit
d906bfd12d
1 changed files with 6 additions and 2 deletions
|
|
@ -302,7 +302,7 @@ WidevineDecryptor::GetCurrentWallTime()
|
|||
}
|
||||
|
||||
void
|
||||
ChromiumCDMChild::OnResolveKeyStatusPromise(uint32_t aPromiseId,
|
||||
WidevineDecryptor::OnResolveKeyStatusPromise(uint32_t aPromiseId,
|
||||
cdm::KeyStatus aKeyStatus) {
|
||||
//TODO: The callback of GetStatusForPolicy. See Mozilla bug 1404230.
|
||||
}
|
||||
|
|
@ -351,6 +351,10 @@ ConvertCDMErrorToCDMException(cdm::Error error) {
|
|||
return cdm::Exception::kExceptionTypeError;
|
||||
case cdm::kQuotaExceededError:
|
||||
return cdm::Exception::kExceptionQuotaExceededError;
|
||||
|
||||
case cdm::kUnknownError:
|
||||
case cdm::kClientError:
|
||||
case cdm::kOutputError:
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
@ -370,7 +374,7 @@ WidevineDecryptor::OnRejectPromise(uint32_t aPromiseId,
|
|||
return;
|
||||
}
|
||||
Log("Decryptor::OnRejectPromise(aPromiseId=%d, err=%d, sysCode=%u, msg=%s)",
|
||||
aPromiseId, (int)aError, aSystemCode, aErrorMessage);
|
||||
aPromiseId, (int)aException, aSystemCode, aErrorMessage);
|
||||
mCallback->RejectPromise(aPromiseId,
|
||||
ToGMPDOMException(aException),
|
||||
!aErrorMessageSize ? "" : aErrorMessage,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue