Skip to content

Commit 604a9f6

Browse files
committed
Roll protocol to r1534754
1 parent d2b130f commit 604a9f6

File tree

9 files changed

+61
-326
lines changed

9 files changed

+61
-326
lines changed

changelog.md

Lines changed: 58 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,64 @@
11

22

3+
## Roll protocol to r1534754 — _2025-10-24T04:31:25.000Z_
4+
###### Diff: [`d2b130f...a5ba850`](https://github.com/ChromeDevTools/devtools-protocol/compare/d2b130f...a5ba850)
5+
6+
```diff
7+
@@ domains/Network.pdl:1929 @@ domain Network
8+
# Fired once security policy has been updated.
9+
experimental event policyUpdated
10+
11+
- # Fired once when parsing the .wbn file has succeeded.
12+
- # The event contains the information about the web bundle contents.
13+
- experimental event subresourceWebBundleMetadataReceived
14+
- parameters
15+
- # Request identifier. Used to match this information to another event.
16+
- RequestId requestId
17+
- # A list of URLs of resources in the subresource Web Bundle.
18+
- array of string urls
19+
-
20+
- # Fired once when parsing the .wbn file has failed.
21+
- experimental event subresourceWebBundleMetadataError
22+
- parameters
23+
- # Request identifier. Used to match this information to another event.
24+
- RequestId requestId
25+
- # Error message
26+
- string errorMessage
27+
-
28+
- # Fired when handling requests for resources within a .wbn file.
29+
- # Note: this will only be fired for resources that are requested by the webpage.
30+
- experimental event subresourceWebBundleInnerResponseParsed
31+
- parameters
32+
- # Request identifier of the subresource request
33+
- RequestId innerRequestId
34+
- # URL of the subresource resource.
35+
- string innerRequestURL
36+
- # Bundle request identifier. Used to match this information to another event.
37+
- # This made be absent in case when the instrumentation was enabled only
38+
- # after webbundle was parsed.
39+
- optional RequestId bundleRequestId
40+
-
41+
- # Fired when request for resources within a .wbn file failed.
42+
- experimental event subresourceWebBundleInnerResponseError
43+
- parameters
44+
- # Request identifier of the subresource request
45+
- RequestId innerRequestId
46+
- # URL of the subresource resource.
47+
- string innerRequestURL
48+
- # Error message
49+
- string errorMessage
50+
- # Bundle request identifier. Used to match this information to another event.
51+
- # This made be absent in case when the instrumentation was enabled only
52+
- # after webbundle was parsed.
53+
- optional RequestId bundleRequestId
54+
-
55+
experimental type CrossOriginOpenerPolicyValue extends string
56+
enum
57+
SameOrigin
58+
```
59+
360
## Roll protocol to r1532728 — _2025-10-21T04:31:48.000Z_
4-
###### Diff: [`b7cda17...0ba3302`](https://github.com/ChromeDevTools/devtools-protocol/compare/b7cda17...0ba3302)
61+
###### Diff: [`b7cda17...d2b130f`](https://github.com/ChromeDevTools/devtools-protocol/compare/b7cda17...d2b130f)
562

663
```diff
764
@@ domains/Inspector.pdl:23 @@ experimental domain Inspector
@@ -42051,34 +42108,4 @@ index d4102f5c..6285d9b6 100644
4205142108

4205242109
# Generates a report for testing.
4205342110
experimental command generateTestReport
42054-
```
42055-
42056-
## Roll protocol to r1101329 — _2023-02-04T04:27:44.000Z_
42057-
###### Diff: [`5d7fa4e...81bd251`](https://github.com/ChromeDevTools/devtools-protocol/compare/5d7fa4e...81bd251)
42058-
42059-
```diff
42060-
@@ browser_protocol.pdl:8159 @@ domain Page
42061-
autoReject
42062-
autoOptOut
42063-
42064-
+ # Extensions for Custom Handlers API:
42065-
+ # https://html.spec.whatwg.org/multipage/system-state.html#rph-automation
42066-
+ experimental command setRPHRegistrationMode
42067-
+ parameters
42068-
+ enum mode
42069-
+ none
42070-
+ autoaccept
42071-
+ autoreject
42072-
+
42073-
# Generates a report for testing.
42074-
experimental command generateTestReport
42075-
parameters
42076-
@@ -8587,6 +8596,7 @@ domain Page
42077-
PreloadingDisabled
42078-
BatterySaverEnabled
42079-
ActivatedDuringMainFrameNavigation
42080-
+ PreloadingUnsupportedByWebContents
42081-
42082-
# Fired when a prerender attempt is completed.
42083-
experimental event prerenderAttemptCompleted
4208442111
```

json/browser_protocol.json

Lines changed: 0 additions & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -18958,94 +18958,6 @@
1895818958
"description": "Fired once security policy has been updated.",
1895918959
"experimental": true
1896018960
},
18961-
{
18962-
"name": "subresourceWebBundleMetadataReceived",
18963-
"description": "Fired once when parsing the .wbn file has succeeded.\nThe event contains the information about the web bundle contents.",
18964-
"experimental": true,
18965-
"parameters": [
18966-
{
18967-
"name": "requestId",
18968-
"description": "Request identifier. Used to match this information to another event.",
18969-
"$ref": "RequestId"
18970-
},
18971-
{
18972-
"name": "urls",
18973-
"description": "A list of URLs of resources in the subresource Web Bundle.",
18974-
"type": "array",
18975-
"items": {
18976-
"type": "string"
18977-
}
18978-
}
18979-
]
18980-
},
18981-
{
18982-
"name": "subresourceWebBundleMetadataError",
18983-
"description": "Fired once when parsing the .wbn file has failed.",
18984-
"experimental": true,
18985-
"parameters": [
18986-
{
18987-
"name": "requestId",
18988-
"description": "Request identifier. Used to match this information to another event.",
18989-
"$ref": "RequestId"
18990-
},
18991-
{
18992-
"name": "errorMessage",
18993-
"description": "Error message",
18994-
"type": "string"
18995-
}
18996-
]
18997-
},
18998-
{
18999-
"name": "subresourceWebBundleInnerResponseParsed",
19000-
"description": "Fired when handling requests for resources within a .wbn file.\nNote: this will only be fired for resources that are requested by the webpage.",
19001-
"experimental": true,
19002-
"parameters": [
19003-
{
19004-
"name": "innerRequestId",
19005-
"description": "Request identifier of the subresource request",
19006-
"$ref": "RequestId"
19007-
},
19008-
{
19009-
"name": "innerRequestURL",
19010-
"description": "URL of the subresource resource.",
19011-
"type": "string"
19012-
},
19013-
{
19014-
"name": "bundleRequestId",
19015-
"description": "Bundle request identifier. Used to match this information to another event.\nThis made be absent in case when the instrumentation was enabled only\nafter webbundle was parsed.",
19016-
"optional": true,
19017-
"$ref": "RequestId"
19018-
}
19019-
]
19020-
},
19021-
{
19022-
"name": "subresourceWebBundleInnerResponseError",
19023-
"description": "Fired when request for resources within a .wbn file failed.",
19024-
"experimental": true,
19025-
"parameters": [
19026-
{
19027-
"name": "innerRequestId",
19028-
"description": "Request identifier of the subresource request",
19029-
"$ref": "RequestId"
19030-
},
19031-
{
19032-
"name": "innerRequestURL",
19033-
"description": "URL of the subresource resource.",
19034-
"type": "string"
19035-
},
19036-
{
19037-
"name": "errorMessage",
19038-
"description": "Error message",
19039-
"type": "string"
19040-
},
19041-
{
19042-
"name": "bundleRequestId",
19043-
"description": "Bundle request identifier. Used to match this information to another event.\nThis made be absent in case when the instrumentation was enabled only\nafter webbundle was parsed.",
19044-
"optional": true,
19045-
"$ref": "RequestId"
19046-
}
19047-
]
19048-
},
1904918961
{
1905018962
"name": "reportingApiReportAdded",
1905118963
"description": "Is sent whenever a new report is added.\nAnd after 'enableReportingApi' for all existing reports.",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devtools-protocol",
3-
"version": "0.0.1532728",
3+
"version": "0.0.1534754",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/Network.pdl

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1929,50 +1929,6 @@ domain Network
19291929
# Fired once security policy has been updated.
19301930
experimental event policyUpdated
19311931

1932-
# Fired once when parsing the .wbn file has succeeded.
1933-
# The event contains the information about the web bundle contents.
1934-
experimental event subresourceWebBundleMetadataReceived
1935-
parameters
1936-
# Request identifier. Used to match this information to another event.
1937-
RequestId requestId
1938-
# A list of URLs of resources in the subresource Web Bundle.
1939-
array of string urls
1940-
1941-
# Fired once when parsing the .wbn file has failed.
1942-
experimental event subresourceWebBundleMetadataError
1943-
parameters
1944-
# Request identifier. Used to match this information to another event.
1945-
RequestId requestId
1946-
# Error message
1947-
string errorMessage
1948-
1949-
# Fired when handling requests for resources within a .wbn file.
1950-
# Note: this will only be fired for resources that are requested by the webpage.
1951-
experimental event subresourceWebBundleInnerResponseParsed
1952-
parameters
1953-
# Request identifier of the subresource request
1954-
RequestId innerRequestId
1955-
# URL of the subresource resource.
1956-
string innerRequestURL
1957-
# Bundle request identifier. Used to match this information to another event.
1958-
# This made be absent in case when the instrumentation was enabled only
1959-
# after webbundle was parsed.
1960-
optional RequestId bundleRequestId
1961-
1962-
# Fired when request for resources within a .wbn file failed.
1963-
experimental event subresourceWebBundleInnerResponseError
1964-
parameters
1965-
# Request identifier of the subresource request
1966-
RequestId innerRequestId
1967-
# URL of the subresource resource.
1968-
string innerRequestURL
1969-
# Error message
1970-
string errorMessage
1971-
# Bundle request identifier. Used to match this information to another event.
1972-
# This made be absent in case when the instrumentation was enabled only
1973-
# after webbundle was parsed.
1974-
optional RequestId bundleRequestId
1975-
19761932
experimental type CrossOriginOpenerPolicyValue extends string
19771933
enum
19781934
SameOrigin

types/protocol-mapping.d.ts

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -555,28 +555,6 @@ export namespace ProtocolMapping {
555555
* @experimental
556556
*/
557557
'Network.policyUpdated': [];
558-
/**
559-
* Fired once when parsing the .wbn file has succeeded.
560-
* The event contains the information about the web bundle contents.
561-
* @experimental
562-
*/
563-
'Network.subresourceWebBundleMetadataReceived': [Protocol.Network.SubresourceWebBundleMetadataReceivedEvent];
564-
/**
565-
* Fired once when parsing the .wbn file has failed.
566-
* @experimental
567-
*/
568-
'Network.subresourceWebBundleMetadataError': [Protocol.Network.SubresourceWebBundleMetadataErrorEvent];
569-
/**
570-
* Fired when handling requests for resources within a .wbn file.
571-
* Note: this will only be fired for resources that are requested by the webpage.
572-
* @experimental
573-
*/
574-
'Network.subresourceWebBundleInnerResponseParsed': [Protocol.Network.SubresourceWebBundleInnerResponseParsedEvent];
575-
/**
576-
* Fired when request for resources within a .wbn file failed.
577-
* @experimental
578-
*/
579-
'Network.subresourceWebBundleInnerResponseError': [Protocol.Network.SubresourceWebBundleInnerResponseErrorEvent];
580558
/**
581559
* Is sent whenever a new report is added.
582560
* And after 'enableReportingApi' for all existing reports.

types/protocol-proxy-api.d.ts

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -3423,32 +3423,6 @@ export namespace ProtocolProxyApi {
34233423
*/
34243424
on(event: 'policyUpdated', listener: () => void): void;
34253425

3426-
/**
3427-
* Fired once when parsing the .wbn file has succeeded.
3428-
* The event contains the information about the web bundle contents.
3429-
* @experimental
3430-
*/
3431-
on(event: 'subresourceWebBundleMetadataReceived', listener: (params: Protocol.Network.SubresourceWebBundleMetadataReceivedEvent) => void): void;
3432-
3433-
/**
3434-
* Fired once when parsing the .wbn file has failed.
3435-
* @experimental
3436-
*/
3437-
on(event: 'subresourceWebBundleMetadataError', listener: (params: Protocol.Network.SubresourceWebBundleMetadataErrorEvent) => void): void;
3438-
3439-
/**
3440-
* Fired when handling requests for resources within a .wbn file.
3441-
* Note: this will only be fired for resources that are requested by the webpage.
3442-
* @experimental
3443-
*/
3444-
on(event: 'subresourceWebBundleInnerResponseParsed', listener: (params: Protocol.Network.SubresourceWebBundleInnerResponseParsedEvent) => void): void;
3445-
3446-
/**
3447-
* Fired when request for resources within a .wbn file failed.
3448-
* @experimental
3449-
*/
3450-
on(event: 'subresourceWebBundleInnerResponseError', listener: (params: Protocol.Network.SubresourceWebBundleInnerResponseErrorEvent) => void): void;
3451-
34523426
/**
34533427
* Is sent whenever a new report is added.
34543428
* And after 'enableReportingApi' for all existing reports.

types/protocol-tests-proxy-api.d.ts

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -3667,40 +3667,6 @@ export namespace ProtocolTestsProxyApi {
36673667
offPolicyUpdated(listener: () => void): void;
36683668
oncePolicyUpdated(eventMatcher?: () => boolean): Promise<void>;
36693669

3670-
/**
3671-
* Fired once when parsing the .wbn file has succeeded.
3672-
* The event contains the information about the web bundle contents.
3673-
* @experimental
3674-
*/
3675-
onSubresourceWebBundleMetadataReceived(listener: (event: { params: Protocol.Network.SubresourceWebBundleMetadataReceivedEvent }) => void): void;
3676-
offSubresourceWebBundleMetadataReceived(listener: (event: { params: Protocol.Network.SubresourceWebBundleMetadataReceivedEvent }) => void): void;
3677-
onceSubresourceWebBundleMetadataReceived(eventMatcher?: (event: { params: Protocol.Network.SubresourceWebBundleMetadataReceivedEvent }) => boolean): Promise<{ params: Protocol.Network.SubresourceWebBundleMetadataReceivedEvent }>;
3678-
3679-
/**
3680-
* Fired once when parsing the .wbn file has failed.
3681-
* @experimental
3682-
*/
3683-
onSubresourceWebBundleMetadataError(listener: (event: { params: Protocol.Network.SubresourceWebBundleMetadataErrorEvent }) => void): void;
3684-
offSubresourceWebBundleMetadataError(listener: (event: { params: Protocol.Network.SubresourceWebBundleMetadataErrorEvent }) => void): void;
3685-
onceSubresourceWebBundleMetadataError(eventMatcher?: (event: { params: Protocol.Network.SubresourceWebBundleMetadataErrorEvent }) => boolean): Promise<{ params: Protocol.Network.SubresourceWebBundleMetadataErrorEvent }>;
3686-
3687-
/**
3688-
* Fired when handling requests for resources within a .wbn file.
3689-
* Note: this will only be fired for resources that are requested by the webpage.
3690-
* @experimental
3691-
*/
3692-
onSubresourceWebBundleInnerResponseParsed(listener: (event: { params: Protocol.Network.SubresourceWebBundleInnerResponseParsedEvent }) => void): void;
3693-
offSubresourceWebBundleInnerResponseParsed(listener: (event: { params: Protocol.Network.SubresourceWebBundleInnerResponseParsedEvent }) => void): void;
3694-
onceSubresourceWebBundleInnerResponseParsed(eventMatcher?: (event: { params: Protocol.Network.SubresourceWebBundleInnerResponseParsedEvent }) => boolean): Promise<{ params: Protocol.Network.SubresourceWebBundleInnerResponseParsedEvent }>;
3695-
3696-
/**
3697-
* Fired when request for resources within a .wbn file failed.
3698-
* @experimental
3699-
*/
3700-
onSubresourceWebBundleInnerResponseError(listener: (event: { params: Protocol.Network.SubresourceWebBundleInnerResponseErrorEvent }) => void): void;
3701-
offSubresourceWebBundleInnerResponseError(listener: (event: { params: Protocol.Network.SubresourceWebBundleInnerResponseErrorEvent }) => void): void;
3702-
onceSubresourceWebBundleInnerResponseError(eventMatcher?: (event: { params: Protocol.Network.SubresourceWebBundleInnerResponseErrorEvent }) => boolean): Promise<{ params: Protocol.Network.SubresourceWebBundleInnerResponseErrorEvent }>;
3703-
37043670
/**
37053671
* Is sent whenever a new report is added.
37063672
* And after 'enableReportingApi' for all existing reports.

0 commit comments

Comments
 (0)