Commit 10eeb774 authored by mlamouri@chromium.org's avatar mlamouri@chromium.org

Presentation API: mark session required in PresentationSessionConnectEventInit.

See spec change: https://github.com/w3c/presentation-api/issues/184

BUG=529051

Review URL: https://codereview.chromium.org/1311003004

git-svn-id: svn://svn.chromium.org/blink/trunk@201971 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 349d8505
......@@ -5,7 +5,7 @@
// https://w3c.github.io/presentation-api/#interface-presentationsessionconnectevent
[
Constructor(DOMString type, optional PresentationSessionConnectEventInit eventInitDict),
Constructor(DOMString type, PresentationSessionConnectEventInit eventInitDict),
RuntimeEnabled=Presentation
] interface PresentationSessionConnectEvent : Event {
[SameObject] readonly attribute PresentationSession session;
......
......@@ -5,5 +5,5 @@
// https://w3c.github.io/presentation-api/#idl-def-presentationsessionconnecteventinit
dictionary PresentationSessionConnectEventInit : EventInit {
PresentationSession session;
required PresentationSession session;
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment