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

Unified Diff: Source/modules/encryptedmedia/MediaKeySession.h

Issue 568033003: Implement MediaKeySession close() and remove() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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: Source/modules/encryptedmedia/MediaKeySession.h
diff --git a/Source/modules/encryptedmedia/MediaKeySession.h b/Source/modules/encryptedmedia/MediaKeySession.h
index 31c1a202759f25c5051e316d90a397139bba4dcd..b157e18928d1e73f917e9d515c15499f3335896c 100644
--- a/Source/modules/encryptedmedia/MediaKeySession.h
+++ b/Source/modules/encryptedmedia/MediaKeySession.h
@@ -80,7 +80,8 @@ public:
ScriptPromise update(ScriptState*, ArrayBuffer* response);
ScriptPromise update(ScriptState*, ArrayBufferView* response);
- ScriptPromise release(ScriptState*);
+ ScriptPromise close(ScriptState*);
+ ScriptPromise remove(ScriptState*);
void enqueueEvent(PassRefPtrWillBeRawPtr<Event>);

Powered by Google App Engine
This is Rietveld 408576698