OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // https://w3c.github.io/presentation-api/#navigatorpresentation | 5 // https://w3c.github.io/presentation-api/#navigatorpresentation |
6 | 6 |
| 7 // TODO(avayvod): This interface is named NavigatorPresentation in the spec: |
| 8 // https://github.com/w3c/presentation-api/issues/137 |
7 [ | 9 [ |
8 GarbageCollected, | 10 GarbageCollected, |
9 RuntimeEnabled=Presentation | 11 RuntimeEnabled=Presentation |
10 ] interface Presentation : EventTarget { | 12 ] interface Presentation : EventTarget { |
11 readonly attribute PresentationSession? session; | 13 // This API used by controlling browsing context. |
12 | 14 // TODO(avayvod): The |presentationId| argument is not in the spec. |
13 [CallWith=ScriptState] Promise<PresentationSession> startSession(DOMString p
resentationUrl, [Default=Undefined] optional DOMString presentationId); | 15 [CallWith=ScriptState] Promise<PresentationSession> startSession(DOMString u
rl, [Default=Undefined] optional DOMString presentationId); |
14 [CallWith=ScriptState] Promise<PresentationSession> joinSession(DOMString pr
esentationUrl, [Default=Undefined] optional DOMString presentationId); | 16 // TODO(avayvod): The |presentationId| argument should not be optional. |
15 | 17 [CallWith=ScriptState] Promise<PresentationSession> joinSession(DOMString ur
l, [Default=Undefined] optional DOMString presentationId); |
| 18 [CallWith=ScriptState] Promise<PresentationAvailability> getAvailability(DOM
String url); |
16 attribute EventHandler ondefaultsessionstart; | 19 attribute EventHandler ondefaultsessionstart; |
17 | 20 |
18 [CallWith=ScriptState] Promise<PresentationAvailability> getAvailability(DOM
String presentationUrl); | 21 // This API used by presenting browsing context. |
| 22 // TODO(avayvod): The spec has |getSession()| and |getSessions()| instead. |
| 23 readonly attribute PresentationSession? session; |
| 24 // TODO(avayvod): attribute EventHandler onsessionavailable; |
19 }; | 25 }; |
OLD | NEW |