feat(webkit): bump to 1334 (#3643)
This commit is contained in:
parent
1a5f22d327
commit
5f9407a0d1
|
|
@ -13,7 +13,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1332",
|
"revision": "1334",
|
||||||
"download": true
|
"download": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -6744,20 +6744,12 @@ Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.
|
||||||
openerId?: PageProxyID;
|
openerId?: PageProxyID;
|
||||||
}
|
}
|
||||||
export type pageProxyDestroyedPayload = {
|
export type pageProxyDestroyedPayload = {
|
||||||
/**
|
|
||||||
* Unique identifier of the context.
|
|
||||||
*/
|
|
||||||
browserContextId: ContextID;
|
|
||||||
pageProxyId: PageProxyID;
|
pageProxyId: PageProxyID;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Fired when provisional load fails.
|
* Fired when provisional load fails.
|
||||||
*/
|
*/
|
||||||
export type provisionalLoadFailedPayload = {
|
export type provisionalLoadFailedPayload = {
|
||||||
/**
|
|
||||||
* Unique identifier of the context.
|
|
||||||
*/
|
|
||||||
browserContextId: ContextID;
|
|
||||||
/**
|
/**
|
||||||
* Unique identifier of the page proxy.
|
* Unique identifier of the page proxy.
|
||||||
*/
|
*/
|
||||||
|
|
@ -6775,10 +6767,6 @@ Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.
|
||||||
* Fired when page opens a new window.
|
* Fired when page opens a new window.
|
||||||
*/
|
*/
|
||||||
export type windowOpenPayload = {
|
export type windowOpenPayload = {
|
||||||
/**
|
|
||||||
* Unique identifier of the context.
|
|
||||||
*/
|
|
||||||
browserContextId: ContextID;
|
|
||||||
/**
|
/**
|
||||||
* Unique identifier of the page proxy.
|
* Unique identifier of the page proxy.
|
||||||
*/
|
*/
|
||||||
|
|
@ -6787,10 +6775,6 @@ Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.
|
||||||
windowFeatures: string[];
|
windowFeatures: string[];
|
||||||
}
|
}
|
||||||
export type downloadCreatedPayload = {
|
export type downloadCreatedPayload = {
|
||||||
/**
|
|
||||||
* Unique identifier of the context.
|
|
||||||
*/
|
|
||||||
browserContextId: ContextID;
|
|
||||||
/**
|
/**
|
||||||
* Unique identifier of the page proxy.
|
* Unique identifier of the page proxy.
|
||||||
*/
|
*/
|
||||||
|
|
@ -6803,26 +6787,14 @@ Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.
|
||||||
url: string;
|
url: string;
|
||||||
}
|
}
|
||||||
export type downloadFilenameSuggestedPayload = {
|
export type downloadFilenameSuggestedPayload = {
|
||||||
/**
|
|
||||||
* Unique identifier of the context.
|
|
||||||
*/
|
|
||||||
browserContextId: ContextID;
|
|
||||||
uuid: string;
|
uuid: string;
|
||||||
suggestedFilename: string;
|
suggestedFilename: string;
|
||||||
}
|
}
|
||||||
export type downloadFinishedPayload = {
|
export type downloadFinishedPayload = {
|
||||||
/**
|
|
||||||
* Unique identifier of the context.
|
|
||||||
*/
|
|
||||||
browserContextId: ContextID;
|
|
||||||
uuid: string;
|
uuid: string;
|
||||||
error: string;
|
error: string;
|
||||||
}
|
}
|
||||||
export type screencastFinishedPayload = {
|
export type screencastFinishedPayload = {
|
||||||
/**
|
|
||||||
* Unique identifier of the context.
|
|
||||||
*/
|
|
||||||
browserContextId: ContextID;
|
|
||||||
/**
|
/**
|
||||||
* Unique identifier of the screencast.
|
* Unique identifier of the screencast.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue