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

Unified Diff: third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp

Issue 2056053003: Change MediaKeys.setServerCertificate() to return Promise<boolean> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resolve false Created 4 years, 6 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
Index: third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
diff --git a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
index 104fd8030bdaf676787d7b9d2eb61d806ebb266b..6412e344f4670a3087d50eb5cecfe01eebbcfd1c 100644
--- a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
+++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp
@@ -80,6 +80,42 @@ private:
const Member<DOMArrayBuffer> m_data;
};
+// This class wraps the promise resolver used when setting the certificate
+// and is passed to Chromium to fullfill the promise. This implementation of
+// complete() will resolve the promise with true, while completeWithError()
+// will reject the promise with an exception. completeWithSession()
+// is not expected to be called, and will reject the promise.
+class SetCertificateResultPromise : public ContentDecryptionModuleResultPromise {
+public:
+ SetCertificateResultPromise(ScriptState* scriptState)
+ : ContentDecryptionModuleResultPromise(scriptState)
+ {
+ }
+
+ ~SetCertificateResultPromise() override
+ {
+ }
+
+ // ContentDecryptionModuleResult implementation.
+ void complete() override
+ {
+ resolve(true);
+ }
+
+ void completeWithError(WebContentDecryptionModuleException exceptionCode, unsigned long systemCode, const WebString& errorMessage) override
+ {
+ // The EME spec specifies that "If the Key System implementation does
+ // not support server certificates, return a promise resolved with
+ // false." So convert any NOTSUPPORTEDERRORS into resolving with false.
xhwang 2016/06/13 17:45:49 s/NOTSUPPORTEDERRORS/NOTSUPPORTEDERROR/
jrummell 2016/06/13 18:54:13 Done.
+ if (exceptionCode == WebContentDecryptionModuleExceptionNotSupportedError) {
+ resolve(false);
+ return;
+ }
+
+ ContentDecryptionModuleResultPromise::completeWithError(exceptionCode, systemCode, errorMessage);
+ }
+};
+
MediaKeys* MediaKeys::create(ExecutionContext* context, const WebVector<WebEncryptedMediaSessionType>& supportedSessionTypes, PassOwnPtr<WebContentDecryptionModule> cdm)
{
MediaKeys* mediaKeys = new MediaKeys(context, supportedSessionTypes, std::move(cdm));
@@ -155,7 +191,7 @@ ScriptPromise MediaKeys::setServerCertificate(ScriptState* scriptState, const DO
DOMArrayBuffer* serverCertificateBuffer = DOMArrayBuffer::create(serverCertificate.data(), serverCertificate.byteLength());
// 4. Let promise be a new promise.
- SimpleContentDecryptionModuleResultPromise* result = new SimpleContentDecryptionModuleResultPromise(scriptState);
+ SetCertificateResultPromise* result = new SetCertificateResultPromise(scriptState);
ScriptPromise promise = result->promise();
// 5. Run the following steps asynchronously (documented in timerFired()).

Powered by Google App Engine
This is Rietveld 408576698