@@ -1020,7 +1020,7 @@ <h3>
1020
1020
[SecureContext, SameObject] readonly attribute Presentation presentation;
1021
1021
};
1022
1022
1023
- [SecureContext]
1023
+ [SecureContext, Exposed=Window]
1024
1024
interface Presentation {
1025
1025
};
1026
1026
@@ -1112,9 +1112,9 @@ <h3>
1112
1112
Interface < dfn > PresentationRequest</ dfn >
1113
1113
</ h3 >
1114
1114
< pre class ="idl ">
1115
- [SecureContext ,
1116
- Constructor(USVString url ),
1117
- Constructor(sequence<USVString> urls) ]
1115
+ [Constructor(USVString url) ,
1116
+ Constructor(sequence< USVString> urls ),
1117
+ SecureContext, Exposed=Window ]
1118
1118
interface PresentationRequest : EventTarget {
1119
1119
Promise<PresentationConnection> start();
1120
1120
Promise<PresentationConnection> reconnect(USVString presentationId);
@@ -1634,7 +1634,7 @@ <h3>
1634
1634
Interface < dfn > PresentationAvailability</ dfn >
1635
1635
</ h3 >
1636
1636
< pre class ="idl ">
1637
- [SecureContext]
1637
+ [SecureContext, Exposed=Window]
1638
1638
interface PresentationAvailability : EventTarget {
1639
1639
readonly attribute boolean value;
1640
1640
@@ -1960,8 +1960,8 @@ <h4>
1960
1960
Interface < dfn > PresentationConnectionAvailableEvent</ dfn >
1961
1961
</ h4 >
1962
1962
< pre class ="idl ">
1963
- [SecureContext ,
1964
- Constructor(DOMString type, PresentationConnectionAvailableEventInit eventInitDict) ]
1963
+ [Constructor(DOMString type, PresentationConnectionAvailableEventInit eventInitDict) ,
1964
+ SecureContext, Exposed=Window ]
1965
1965
interface PresentationConnectionAvailableEvent : Event {
1966
1966
[SameObject] readonly attribute PresentationConnection connection;
1967
1967
};
@@ -2032,7 +2032,7 @@ <h3>
2032
2032
enum PresentationConnectionState { "connecting", "connected", "closed", "terminated" };
2033
2033
enum BinaryType { "blob", "arraybuffer" };
2034
2034
2035
- [SecureContext]
2035
+ [SecureContext, Exposed=Window ]
2036
2036
interface PresentationConnection : EventTarget {
2037
2037
readonly attribute USVString id;
2038
2038
readonly attribute USVString url;
@@ -2401,8 +2401,8 @@ <h4>
2401
2401
< pre class ="idl ">
2402
2402
enum PresentationConnectionCloseReason { "error", "closed", "wentaway" };
2403
2403
2404
- [SecureContext ,
2405
- Constructor(DOMString type, PresentationConnectionCloseEventInit eventInitDict) ]
2404
+ [Constructor(DOMString type, PresentationConnectionCloseEventInit eventInitDict) ,
2405
+ SecureContext, Exposed=Window ]
2406
2406
interface PresentationConnectionCloseEvent : Event {
2407
2407
readonly attribute PresentationConnectionCloseReason reason;
2408
2408
readonly attribute DOMString message;
@@ -2807,7 +2807,7 @@ <h3>
2807
2807
Interface < dfn > PresentationReceiver</ dfn >
2808
2808
</ h3 >
2809
2809
< pre class ="idl ">
2810
- [SecureContext]
2810
+ [SecureContext, Exposed=Window ]
2811
2811
interface PresentationReceiver {
2812
2812
readonly attribute Promise<PresentationConnectionList> connectionList;
2813
2813
};
@@ -2982,7 +2982,7 @@ <h3>
2982
2982
Interface < dfn > PresentationConnectionList</ dfn >
2983
2983
</ h3 >
2984
2984
< pre class ="idl ">
2985
- [SecureContext]
2985
+ [SecureContext, Exposed=Window ]
2986
2986
interface PresentationConnectionList : EventTarget {
2987
2987
readonly attribute FrozenArray<PresentationConnection> connections;
2988
2988
attribute EventHandler onconnectionavailable;
0 commit comments