Skip to content

Commit d3d8ab5

Browse files
committed
Roll protocol to r1503134
1 parent 7bf9db8 commit d3d8ab5

File tree

6 files changed

+38
-36
lines changed

6 files changed

+38
-36
lines changed

changelog.md

Lines changed: 17 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11

22

3+
## Roll protocol to r1503134 — _2025-08-19T04:31:54.000Z_
4+
###### Diff: [`7bf9db8...d787df4`](https://github.com/ChromeDevTools/devtools-protocol/compare/7bf9db8...d787df4)
5+
6+
```diff
7+
@@ domains/Network.pdl:1088 @@ domain Network
8+
optional integer maxPostDataSize
9+
# Whether DirectSocket chunk send/receive events should be reported.
10+
experimental optional boolean reportDirectSocketTraffic
11+
+ # Enable storing response bodies outside of renderer, so that these survive
12+
+ # a cross-process navigation. Requires maxTotalBufferSize to be set.
13+
+ # Currently defaults to false.
14+
+ experimental optional boolean enableDurableMessages
15+
16+
# Returns all browser cookies. Depending on the backend support, will return detailed cookie
17+
# information in the `cookies` field.
18+
```
19+
320
## Roll protocol to r1501779 — _2025-08-15T04:33:26.000Z_
421
###### Diff: [`ae77133...ce40d37`](https://github.com/ChromeDevTools/devtools-protocol/compare/ae77133...ce40d37)
522

@@ -41854,37 +41871,4 @@ index d4102f5c..6285d9b6 100644
4185441871
+
4185541872
# This domain allows detailed inspection of media elements
4185641873
experimental domain Media
41857-
```
41858-
41859-
## Roll protocol to r1077862 — _2022-12-01T04:30:06.000Z_
41860-
###### Diff: [`151a19b...23c561a`](https://github.com/ChromeDevTools/devtools-protocol/compare/151a19b...23c561a)
41861-
41862-
```diff
41863-
@@ browser_protocol.pdl:8423 @@ domain Page
41864-
InjectedStyleSheet
41865-
KeepaliveRequest
41866-
Dummy
41867-
+ AuthorizationHeader
41868-
# Disabled for RenderFrameHost reasons
41869-
# See content/browser/renderer_host/back_forward_cache_disable.h for explanations.
41870-
ContentSecurityHandler
41871-
@@ -9076,6 +9077,7 @@ experimental domain Storage
41872-
join
41873-
leave
41874-
update
41875-
+ loaded
41876-
bid
41877-
win
41878-
41879-
@@ -10011,8 +10013,8 @@ experimental domain Tracing
41880-
# total size.
41881-
optional number value
41882-
41883-
- # Contains an bucket of collected trace events. When tracing is stopped collected events will be
41884-
- # send as a sequence of dataCollected events followed by tracingComplete event.
41885-
+ # Contains a bucket of collected trace events. When tracing is stopped collected events will be
41886-
+ # sent as a sequence of dataCollected events followed by tracingComplete event.
41887-
event dataCollected
41888-
parameters
41889-
array of object value
4189041874
```

json/browser_protocol.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17108,6 +17108,13 @@
1710817108
"experimental": true,
1710917109
"optional": true,
1711017110
"type": "boolean"
17111+
},
17112+
{
17113+
"name": "enableDurableMessages",
17114+
"description": "Enable storing response bodies outside of renderer, so that these survive\na cross-process navigation. Requires maxTotalBufferSize to be set.\nCurrently defaults to false.",
17115+
"experimental": true,
17116+
"optional": true,
17117+
"type": "boolean"
1711117118
}
1711217119
]
1711317120
},

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.1502260",
3+
"version": "0.0.1503134",
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,6 +1088,10 @@ domain Network
10881088
optional integer maxPostDataSize
10891089
# Whether DirectSocket chunk send/receive events should be reported.
10901090
experimental optional boolean reportDirectSocketTraffic
1091+
# Enable storing response bodies outside of renderer, so that these survive
1092+
# a cross-process navigation. Requires maxTotalBufferSize to be set.
1093+
# Currently defaults to false.
1094+
experimental optional boolean enableDurableMessages
10911095

10921096
# Returns all browser cookies. Depending on the backend support, will return detailed cookie
10931097
# information in the `cookies` field.

types/protocol.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13495,6 +13495,13 @@ export namespace Protocol {
1349513495
* @experimental
1349613496
*/
1349713497
reportDirectSocketTraffic?: boolean;
13498+
/**
13499+
* Enable storing response bodies outside of renderer, so that these survive
13500+
* a cross-process navigation. Requires maxTotalBufferSize to be set.
13501+
* Currently defaults to false.
13502+
* @experimental
13503+
*/
13504+
enableDurableMessages?: boolean;
1349813505
}
1349913506

1350013507
export interface GetAllCookiesResponse {

0 commit comments

Comments
 (0)