Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(webkit): bump to 1334 #3643

Merged
merged 1 commit into from
Aug 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
{
"name": "webkit",
"revision": "1332",
"revision": "1334",
"download": true
}
]
Expand Down
28 changes: 0 additions & 28 deletions src/server/webkit/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand All @@ -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.
*/
Expand All @@ -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.
*/
Expand All @@ -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.
*/
Expand Down