feat(webkit): bump to 1334 (#3643)

This commit is contained in:
Yury Semikhatsky 2020-08-26 15:18:39 -07:00 committed by GitHub
parent 1a5f22d327
commit 5f9407a0d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 29 deletions

View file

@ -13,7 +13,7 @@
},
{
"name": "webkit",
"revision": "1332",
"revision": "1334",
"download": true
}
]

View file

@ -6744,20 +6744,12 @@ Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.
openerId?: PageProxyID;
}
export type pageProxyDestroyedPayload = {
/**
* Unique identifier of the context.
*/
browserContextId: ContextID;
pageProxyId: PageProxyID;
}
/**
* Fired when provisional load fails.
*/
export type provisionalLoadFailedPayload = {
/**
* Unique identifier of the context.
*/
browserContextId: ContextID;
/**
* 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.
*/
export type windowOpenPayload = {
/**
* Unique identifier of the context.
*/
browserContextId: ContextID;
/**
* Unique identifier of the page proxy.
*/
@ -6787,10 +6775,6 @@ Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.
windowFeatures: string[];
}
export type downloadCreatedPayload = {
/**
* Unique identifier of the context.
*/
browserContextId: ContextID;
/**
* Unique identifier of the page proxy.
*/
@ -6803,26 +6787,14 @@ Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.
url: string;
}
export type downloadFilenameSuggestedPayload = {
/**
* Unique identifier of the context.
*/
browserContextId: ContextID;
uuid: string;
suggestedFilename: string;
}
export type downloadFinishedPayload = {
/**
* Unique identifier of the context.
*/
browserContextId: ContextID;
uuid: string;
error: string;
}
export type screencastFinishedPayload = {
/**
* Unique identifier of the context.
*/
browserContextId: ContextID;
/**
* Unique identifier of the screencast.
*/