Skip to content

Commit 87144ce

Browse files
committed
Roll protocol to r1490591
1 parent 4819069 commit 87144ce

File tree

5 files changed

+33
-33
lines changed

5 files changed

+33
-33
lines changed

changelog.md

Lines changed: 17 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11

22

3+
## Roll protocol to r1490591 — _2025-07-23T04:34:18.000Z_
4+
###### Diff: [`4819069...b94871d`](https://github.com/ChromeDevTools/devtools-protocol/compare/4819069...b94871d)
5+
6+
```diff
7+
@@ browser_protocol.pdl:6508 @@ domain Network
8+
Security.SecurityState securityState
9+
# Security details for the request.
10+
optional SecurityDetails securityDetails
11+
+ # Indicates whether the request was sent through IP Protection proxies. If
12+
+ # set to true, the request used the IP Protection privacy feature.
13+
+ experimental optional boolean isIpProtectionUsed
14+
15+
# WebSocket request data.
16+
type WebSocketRequest extends object
17+
```
18+
319
## Roll protocol to r1488636 — _2025-07-18T04:33:56.000Z_
4-
###### Diff: [`1103fe1...8a8d5bd`](https://github.com/ChromeDevTools/devtools-protocol/compare/1103fe1...8a8d5bd)
20+
###### Diff: [`1103fe1...4819069`](https://github.com/ChromeDevTools/devtools-protocol/compare/1103fe1...4819069)
521

622
```diff
723
@@ browser_protocol.pdl:7711 @@ domain Network
@@ -14021,37 +14037,6 @@ index b3b97fa..6efcf78 100644
1402114037
- # Deprecated: use Page.getAdScriptId instead.
1402214038
- experimental deprecated optional AdScriptId adScriptId
1402314039

14024-
# Fired when frame no longer has a scheduled navigation.
14025-
deprecated event frameClearedScheduledNavigation
14026-
```
14027-
14028-
## Roll protocol to r1059612 — _2022-10-15T04:53:37.000Z_
14029-
###### Diff: [`ddedcee...aca7212`](https://github.com/ChromeDevTools/devtools-protocol/compare/ddedcee...aca7212)
14030-
14031-
```diff
14032-
@@ browser_protocol.pdl:7682 @@ domain Page
14033-
# Recommendation for manifest's id attribute to match current id computed from start_url
14034-
optional string recommendedId
14035-
14036-
+ experimental command getAdScriptId
14037-
+ parameters
14038-
+ FrameId frameId
14039-
+ returns
14040-
+ # Identifies the bottom-most script which caused the frame to be labelled
14041-
+ # as an ad. Only sent if frame is labelled as an ad and id is available.
14042-
+ optional AdScriptId adScriptId
14043-
+
14044-
# Returns all browser cookies for the page and all of its subframes. Depending
14045-
# on the backend support, will return detailed cookie information in the
14046-
# `cookies` field.
14047-
@@ -8129,7 +8137,8 @@ domain Page
14048-
optional Runtime.StackTrace stack
14049-
# Identifies the bottom-most script which caused the frame to be labelled
14050-
# as an ad. Only sent if frame is labelled as an ad and id is available.
14051-
- experimental optional AdScriptId adScriptId
14052-
+ # Deprecated: use Page.getAdScriptId instead.
14053-
+ experimental deprecated optional AdScriptId adScriptId
14054-
1405514040
# Fired when frame no longer has a scheduled navigation.
1405614041
deprecated event frameClearedScheduledNavigation
1405714042
```

json/browser_protocol.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13911,6 +13911,13 @@
1391113911
"description": "Security details for the request.",
1391213912
"optional": true,
1391313913
"$ref": "SecurityDetails"
13914+
},
13915+
{
13916+
"name": "isIpProtectionUsed",
13917+
"description": "Indicates whether the request was sent through IP Protection proxies. If\nset to true, the request used the IP Protection privacy feature.",
13918+
"experimental": true,
13919+
"optional": true,
13920+
"type": "boolean"
1391413921
}
1391513922
]
1391613923
},

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.1488636",
3+
"version": "0.0.1490591",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/browser_protocol.pdl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6508,6 +6508,9 @@ domain Network
65086508
Security.SecurityState securityState
65096509
# Security details for the request.
65106510
optional SecurityDetails securityDetails
6511+
# Indicates whether the request was sent through IP Protection proxies. If
6512+
# set to true, the request used the IP Protection privacy feature.
6513+
experimental optional boolean isIpProtectionUsed
65116514

65126515
# WebSocket request data.
65136516
type WebSocketRequest extends object

types/protocol.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11212,6 +11212,11 @@ export namespace Protocol {
1121211212
* Security details for the request.
1121311213
*/
1121411214
securityDetails?: SecurityDetails;
11215+
/**
11216+
* Indicates whether the request was sent through IP Protection proxies. If
11217+
* set to true, the request used the IP Protection privacy feature.
11218+
*/
11219+
isIpProtectionUsed?: boolean;
1121511220
}
1121611221

1121711222
/**

0 commit comments

Comments
 (0)