Skip to content

Commit d03fc9b

Browse files
committed
Roll protocol to r1587613
1 parent 6c86810 commit d03fc9b

6 files changed

Lines changed: 24 additions & 40 deletions

File tree

changelog.md

Lines changed: 16 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11

22

3+
## Roll protocol to r1587613 — _2026-02-20T04:57:52.000Z_
4+
###### Diff: [`6c86810...6f1c2ce`](https://github.com/ChromeDevTools/devtools-protocol/compare/6c86810...6f1c2ce)
5+
6+
```diff
7+
@@ domains/Network.pdl:1113 @@ domain Network
8+
command enable
9+
parameters
10+
# Buffer size in bytes to use when preserving network payloads (XHRs, etc).
11+
+ # This is the maximum number of bytes that will be collected by this
12+
+ # DevTools session.
13+
experimental optional integer maxTotalBufferSize
14+
# Per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).
15+
experimental optional integer maxResourceBufferSize
16+
```
17+
318
## Roll protocol to r1585077 — _2026-02-14T04:53:53.000Z_
4-
###### Diff: [`b328fc2...a4836b4`](https://github.com/ChromeDevTools/devtools-protocol/compare/b328fc2...a4836b4)
19+
###### Diff: [`b328fc2...6c86810`](https://github.com/ChromeDevTools/devtools-protocol/compare/b328fc2...6c86810)
520

621
```diff
722
@@ domains/Audits.pdl:105 @@ experimental domain Audits
@@ -42362,39 +42377,4 @@ index 0dbdc01d..7a3c772c 100644
4236242377
InvalidEligibleHeader
4236342378
SourceAndTriggerHeaders
4236442379
SourceIgnored
42365-
```
42366-
42367-
## Roll protocol to r1135726 — _2023-04-26T04:27:01.000Z_
42368-
###### Diff: [`72f4d4e...7a08255`](https://github.com/ChromeDevTools/devtools-protocol/compare/72f4d4e...7a08255)
42369-
42370-
```diff
42371-
@@ browser_protocol.pdl:4668 @@ experimental domain LayerTree
42372-
LayerId layerId
42373-
returns
42374-
# A list of strings specifying reasons for the given layer to become composited.
42375-
- deprecated array of string compositingReasons
42376-
+ array of string compositingReasons
42377-
# A list of strings specifying reason IDs for the given layer to become composited.
42378-
array of string compositingReasonIds
42379-
42380-
@@ -7228,6 +7228,7 @@ domain Page
42381-
payment
42382-
picture-in-picture
42383-
private-aggregation
42384-
+ private-state-token-issuance
42385-
private-state-token-redemption
42386-
publickey-credentials-get
42387-
run-ad-auction
42388-
@@ -9384,6 +9385,11 @@ experimental domain Storage
42389-
string storageKey
42390-
string bucketName
42391-
42392-
+ # Deletes state for sites identified as potential bounce trackers, immediately.
42393-
+ experimental command runBounceTrackingMitigations
42394-
+ returns
42395-
+ array of string deletedSites
42396-
+
42397-
# A cache's contents have been modified.
42398-
event cacheStorageContentUpdated
42399-
parameters
4240042380
```

json/browser_protocol.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17920,7 +17920,7 @@
1792017920
"parameters": [
1792117921
{
1792217922
"name": "maxTotalBufferSize",
17923-
"description": "Buffer size in bytes to use when preserving network payloads (XHRs, etc).",
17923+
"description": "Buffer size in bytes to use when preserving network payloads (XHRs, etc).\nThis is the maximum number of bytes that will be collected by this\nDevTools session.",
1792417924
"experimental": true,
1792517925
"optional": true,
1792617926
"type": "integer"

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.1585077",
3+
"version": "0.0.1587613",
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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,6 +1113,8 @@ domain Network
11131113
command enable
11141114
parameters
11151115
# Buffer size in bytes to use when preserving network payloads (XHRs, etc).
1116+
# This is the maximum number of bytes that will be collected by this
1117+
# DevTools session.
11161118
experimental optional integer maxTotalBufferSize
11171119
# Per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).
11181120
experimental optional integer maxResourceBufferSize

types/protocol.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14028,6 +14028,8 @@ export namespace Protocol {
1402814028
export interface EnableRequest {
1402914029
/**
1403014030
* Buffer size in bytes to use when preserving network payloads (XHRs, etc).
14031+
* This is the maximum number of bytes that will be collected by this
14032+
* DevTools session.
1403114033
* @experimental
1403214034
*/
1403314035
maxTotalBufferSize?: integer;

0 commit comments

Comments
 (0)