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

Unified Diff: Source/modules/encryptedmedia/MediaKeys.idl

Issue 132823005: Schedule session initialization in MediaKeys. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@rename_close_gkr
Patch Set: comments addressed Created 6 years, 11 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/MediaKeys.idl
diff --git a/Source/modules/encryptedmedia/MediaKeys.idl b/Source/modules/encryptedmedia/MediaKeys.idl
index 9d99d43583506f257e79c84189a4f8d3ef31e03f..3a4c199a82c067dc85fcf8acd183aa83017715a0 100644
--- a/Source/modules/encryptedmedia/MediaKeys.idl
+++ b/Source/modules/encryptedmedia/MediaKeys.idl
@@ -28,7 +28,7 @@
Constructor(DOMString keySystem),
RaisesException=Constructor
] interface MediaKeys {
- [CallWith=ExecutionContext, RaisesException] MediaKeySession createSession([Default=Undefined] optional DOMString type, [Default=Undefined] optional Uint8Array initData);
+ [CallWith=ExecutionContext, RaisesException] MediaKeySession createSession([Default=Undefined] DOMString type, [Default=Undefined] Uint8Array initData);
ddorwin 2014/01/15 01:41:01 Do we we need the Default part now that it's not o
xhwang 2014/01/15 02:22:21 Done.
readonly attribute DOMString keySystem;
};

Powered by Google App Engine
This is Rietveld 408576698