Skip to content

Commit 71d5e25

Browse files
committed
Roll protocol to r1481382
1 parent 097b400 commit 71d5e25

File tree

8 files changed

+28
-100
lines changed

8 files changed

+28
-100
lines changed

changelog.md

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

22

3+
## Roll protocol to r1481382 — _2025-07-02T04:32:10.000Z_
4+
###### Diff: [`097b400...0aaa3c5`](https://github.com/ChromeDevTools/devtools-protocol/compare/097b400...0aaa3c5)
5+
6+
```diff
7+
@@ browser_protocol.pdl:8253 @@ experimental domain Overlay
8+
searchForNode
9+
searchForUAShadowDOM
10+
captureAreaScreenshot
11+
- showDistances
12+
none
13+
14+
# Disables domain notifications.
15+
@@ -10639,10 +10638,6 @@ experimental domain ServiceWorker
16+
17+
command enable
18+
19+
- command inspectWorker
20+
- parameters
21+
- string versionId
22+
-
23+
command setForceUpdateOnPageLoad
24+
parameters
25+
boolean forceUpdateOnPageLoad
26+
```
27+
328
## Roll protocol to r1479623 — _2025-06-27T04:31:59.000Z_
4-
###### Diff: [`bdd3e90...ae7f7aa`](https://github.com/ChromeDevTools/devtools-protocol/compare/bdd3e90...ae7f7aa)
29+
###### Diff: [`bdd3e90...097b400`](https://github.com/ChromeDevTools/devtools-protocol/compare/bdd3e90...097b400)
530

631
```diff
732
@@ browser_protocol.pdl:7671 @@ domain Network
@@ -14046,74 +14071,4 @@ index b3b97fa..6efcf78 100644
1404614071

1404714072
# Fired when a prerender attempt is completed.
1404814073
experimental event prerenderAttemptCompleted
14049-
```
14050-
14051-
## Roll protocol to r1052822 — _2022-09-29T04:58:25.000Z_
14052-
###### Diff: [`0ce6bcb...6e37e04`](https://github.com/ChromeDevTools/devtools-protocol/compare/0ce6bcb...6e37e04)
14053-
14054-
```diff
14055-
@@ browser_protocol.pdl:5256 @@ domain Network
14056-
# Type "send-redemption-record" in the Trust Token API.
14057-
Signing
14058-
14059-
+ # The reason why Chrome uses a specific transport protocol for HTTP semantics.
14060-
+ experimental type AlternateProtocolUsage extends string
14061-
+ enum
14062-
+ # Alternate Protocol was used without racing a normal connection.
14063-
+ alternativeJobWonWithoutRace
14064-
+ # Alternate Protocol was used by winning a race with a normal connection.
14065-
+ alternativeJobWonRace
14066-
+ # Alternate Protocol was not used by losing a race with a normal connection.
14067-
+ mainJobWonRace
14068-
+ # Alternate Protocol was not used because no Alternate-Protocol information
14069-
+ # was available when the request was issued, but an Alternate-Protocol header
14070-
+ # was present in the response.
14071-
+ mappingMissing
14072-
+ # Alternate Protocol was not used because it was marked broken.
14073-
+ broken
14074-
+ # HTTPS DNS protocol upgrade job was used without racing with a normal
14075-
+ # connection and an Alternate Protocol job.
14076-
+ dnsAlpnH3JobWonWithoutRace
14077-
+ # HTTPS DNS protocol upgrade job won a race with a normal connection and
14078-
+ # an Alternate Protocol job.
14079-
+ dnsAlpnH3JobWonRace
14080-
+ # When the reason is unspecified.
14081-
+ unspecifiedReason
14082-
+
14083-
# HTTP response data.
14084-
type Response extends object
14085-
properties
14086-
@@ -5301,6 +5325,8 @@ domain Network
14087-
optional string cacheStorageCacheName
14088-
# Protocol used to fetch this request.
14089-
optional string protocol
14090-
+ # The reason why Chrome uses a specific transport protocol for HTTP semantics.
14091-
+ experimental optional AlternateProtocolUsage alternateProtocolUsage
14092-
# Security state of the request resource.
14093-
Security.SecurityState securityState
14094-
# Security details for the request.
14095-
@@ -7106,6 +7132,7 @@ domain Page
14096-
ch-downlink
14097-
ch-ect
14098-
ch-prefers-color-scheme
14099-
+ ch-prefers-reduced-motion
14100-
ch-rtt
14101-
ch-save-data
14102-
ch-ua
14103-
@@ -7132,7 +7159,6 @@ domain Page
14104-
encrypted-media
14105-
execution-while-out-of-viewport
14106-
execution-while-not-rendered
14107-
- federated-credentials
14108-
focus-without-user-activation
14109-
fullscreen
14110-
frobulate
14111-
@@ -7140,6 +7166,7 @@ domain Page
14112-
geolocation
14113-
gyroscope
14114-
hid
14115-
+ identity-credential-get
14116-
idle-detection
14117-
interest-cohort
14118-
join-ad-interest-group
1411914074
```

json/browser_protocol.json

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17610,7 +17610,6 @@
1761017610
"searchForNode",
1761117611
"searchForUAShadowDOM",
1761217612
"captureAreaScreenshot",
17613-
"showDistances",
1761417613
"none"
1761517614
]
1761617615
}
@@ -22508,15 +22507,6 @@
2250822507
{
2250922508
"name": "enable"
2251022509
},
22511-
{
22512-
"name": "inspectWorker",
22513-
"parameters": [
22514-
{
22515-
"name": "versionId",
22516-
"type": "string"
22517-
}
22518-
]
22519-
},
2252022510
{
2252122511
"name": "setForceUpdateOnPageLoad",
2252222512
"parameters": [

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.1479623",
3+
"version": "0.0.1481382",
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: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8253,7 +8253,6 @@ experimental domain Overlay
82538253
searchForNode
82548254
searchForUAShadowDOM
82558255
captureAreaScreenshot
8256-
showDistances
82578256
none
82588257

82598258
# Disables domain notifications.
@@ -10639,10 +10638,6 @@ experimental domain ServiceWorker
1063910638

1064010639
command enable
1064110640

10642-
command inspectWorker
10643-
parameters
10644-
string versionId
10645-
1064610641
command setForceUpdateOnPageLoad
1064710642
parameters
1064810643
boolean forceUpdateOnPageLoad

types/protocol-mapping.d.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4480,10 +4480,6 @@ export namespace ProtocolMapping {
44804480
paramsType: [];
44814481
returnType: void;
44824482
};
4483-
'ServiceWorker.inspectWorker': {
4484-
paramsType: [Protocol.ServiceWorker.InspectWorkerRequest];
4485-
returnType: void;
4486-
};
44874483
'ServiceWorker.setForceUpdateOnPageLoad': {
44884484
paramsType: [Protocol.ServiceWorker.SetForceUpdateOnPageLoadRequest];
44894485
returnType: void;

types/protocol-proxy-api.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3597,8 +3597,6 @@ export namespace ProtocolProxyApi {
35973597

35983598
enable(): Promise<void>;
35993599

3600-
inspectWorker(params: Protocol.ServiceWorker.InspectWorkerRequest): Promise<void>;
3601-
36023600
setForceUpdateOnPageLoad(params: Protocol.ServiceWorker.SetForceUpdateOnPageLoadRequest): Promise<void>;
36033601

36043602
skipWaiting(params: Protocol.ServiceWorker.SkipWaitingRequest): Promise<void>;

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3899,8 +3899,6 @@ export namespace ProtocolTestsProxyApi {
38993899

39003900
enable(): Promise<{id: number, result: void, sessionId: string}>;
39013901

3902-
inspectWorker(params: Protocol.ServiceWorker.InspectWorkerRequest): Promise<{id: number, result: void, sessionId: string}>;
3903-
39043902
setForceUpdateOnPageLoad(params: Protocol.ServiceWorker.SetForceUpdateOnPageLoadRequest): Promise<{id: number, result: void, sessionId: string}>;
39053903

39063904
skipWaiting(params: Protocol.ServiceWorker.SkipWaitingRequest): Promise<{id: number, result: void, sessionId: string}>;

types/protocol.d.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13657,7 +13657,7 @@ export namespace Protocol {
1365713657
maskColor?: DOM.RGBA;
1365813658
}
1365913659

13660-
export type InspectMode = ('searchForNode' | 'searchForUAShadowDOM' | 'captureAreaScreenshot' | 'showDistances' | 'none');
13660+
export type InspectMode = ('searchForNode' | 'searchForUAShadowDOM' | 'captureAreaScreenshot' | 'none');
1366113661

1366213662
export interface GetHighlightObjectForTestRequest {
1366313663
/**
@@ -16501,10 +16501,6 @@ export namespace Protocol {
1650116501
tag: string;
1650216502
}
1650316503

16504-
export interface InspectWorkerRequest {
16505-
versionId: string;
16506-
}
16507-
1650816504
export interface SetForceUpdateOnPageLoadRequest {
1650916505
forceUpdateOnPageLoad: boolean;
1651016506
}

0 commit comments

Comments
 (0)