feat(firefox): roll to r1302 (#10062)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Andrey Lushnikov <aslushnikov@gmail.com>
This commit is contained in:
github-actions[bot] 2021-11-04 16:12:59 -07:00 committed by GitHub
parent c6e0ecc38c
commit 8a6e4bd350
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 21 deletions

View file

@ -13,7 +13,7 @@
},
{
"name": "firefox",
"revision": "1301",
"revision": "1302",
"installByDefault": true
},
{

View file

@ -851,14 +851,6 @@ export module Protocol {
requestStart: number;
responseStart: number;
};
export type InterceptedResponse = {
status: number;
statusText: string;
headers: {
name: string;
value: string;
}[];
};
export type requestWillBeSentPayload = {
frameId?: string;
requestId: string;
@ -940,19 +932,8 @@ export module Protocol {
value: string;
}[];
postData?: string;
interceptResponse?: boolean;
};
export type resumeInterceptedRequestReturnValue = {
response?: {
status: number;
statusText: string;
headers: {
name: string;
value: string;
}[];
};
error?: string;
};
export type resumeInterceptedRequestReturnValue = void;
export type fulfillInterceptedRequestParameters = {
requestId: string;
status: number;