Skip to content

Commit 86cf20a

Browse files
committed
Roll protocol to r1516431
1 parent 0cac6fd commit 86cf20a

8 files changed

Lines changed: 82 additions & 31 deletions

File tree

changelog.md

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

22

3+
## Roll protocol to r1516431 — _2025-09-17T04:30:57.000Z_
4+
###### Diff: [`0cac6fd...86d499e`](https://github.com/ChromeDevTools/devtools-protocol/compare/0cac6fd...86d499e)
5+
6+
```diff
7+
@@ domains/Network.pdl:211 @@ domain Network
8+
# True if this resource request is considered to be the 'same site' as the
9+
# request corresponding to the main frame.
10+
experimental optional boolean isSameSite
11+
+ # True when the resource request is ad-related.
12+
+ experimental optional boolean isAdRelated
13+
14+
# Details of a signed certificate timestamp (SCT).
15+
type SignedCertificateTimestamp extends object
16+
diff --git a/pdl/js_protocol.pdl b/pdl/js_protocol.pdl
17+
index 4a386334..bc86332d 100644
18+
--- a/pdl/js_protocol.pdl
19+
+++ b/pdl/js_protocol.pdl
20+
@@ -1142,6 +1142,8 @@ domain Runtime
21+
dataview
22+
webassemblymemory
23+
wasmvalue
24+
+ # blink's subtypes.
25+
+ trustedtype
26+
# Object class (constructor) name. Specified for `object` type values only.
27+
optional string className
28+
# Remote object value in case of primitive values or JSON values (if it was requested).
29+
@@ -1203,6 +1205,8 @@ domain Runtime
30+
dataview
31+
webassemblymemory
32+
wasmvalue
33+
+ # blink's subtypes.
34+
+ trustedtype
35+
# String representation of the object.
36+
optional string description
37+
# True iff some of the properties or entries of the original object did not fit.
38+
@@ -1252,6 +1256,8 @@ domain Runtime
39+
dataview
40+
webassemblymemory
41+
wasmvalue
42+
+ # blink's subtypes.
43+
+ trustedtype
44+
45+
experimental type EntryPreview extends object
46+
properties
47+
```
48+
349
## Roll protocol to r1515996 — _2025-09-16T13:32:58.000Z_
4-
###### Diff: [`54189ca...49b0ae5`](https://github.com/ChromeDevTools/devtools-protocol/compare/54189ca...49b0ae5)
50+
###### Diff: [`54189ca...0cac6fd`](https://github.com/ChromeDevTools/devtools-protocol/compare/54189ca...0cac6fd)
551

652
```diff
753
@@ domains/Network.pdl:622 @@ domain Network
@@ -41990,25 +42036,4 @@ index d4102f5c..6285d9b6 100644
4199042036

4199142037
# Issued when all executionContexts were cleared in browser
4199242038
event executionContextsCleared
41993-
```
41994-
41995-
## Roll protocol to r1089107 — _2023-01-05T04:28:22.000Z_
41996-
###### Diff: [`253af7d...6eb86f8`](https://github.com/ChromeDevTools/devtools-protocol/compare/253af7d...6eb86f8)
41997-
41998-
```diff
41999-
@@ browser_protocol.pdl:7218 @@ domain Page
42000-
otp-credentials
42001-
payment
42002-
picture-in-picture
42003-
+ private-aggregation
42004-
publickey-credentials-get
42005-
run-ad-auction
42006-
screen-wake-lock
42007-
serial
42008-
shared-autofill
42009-
shared-storage
42010-
+ shared-storage-select-url
42011-
smart-card
42012-
storage-access
42013-
sync-xhr
4201442039
```

json/browser_protocol.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15211,6 +15211,13 @@
1521115211
"experimental": true,
1521215212
"optional": true,
1521315213
"type": "boolean"
15214+
},
15215+
{
15216+
"name": "isAdRelated",
15217+
"description": "True when the resource request is ad-related.",
15218+
"experimental": true,
15219+
"optional": true,
15220+
"type": "boolean"
1521415221
}
1521515222
]
1521615223
},

json/js_protocol.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2362,7 +2362,8 @@
23622362
"arraybuffer",
23632363
"dataview",
23642364
"webassemblymemory",
2365-
"wasmvalue"
2365+
"wasmvalue",
2366+
"trustedtype"
23662367
]
23672368
},
23682369
{
@@ -2480,7 +2481,8 @@
24802481
"arraybuffer",
24812482
"dataview",
24822483
"webassemblymemory",
2483-
"wasmvalue"
2484+
"wasmvalue",
2485+
"trustedtype"
24842486
]
24852487
},
24862488
{
@@ -2575,7 +2577,8 @@
25752577
"arraybuffer",
25762578
"dataview",
25772579
"webassemblymemory",
2578-
"wasmvalue"
2580+
"wasmvalue",
2581+
"trustedtype"
25792582
]
25802583
}
25812584
]

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.1515996",
3+
"version": "0.0.1516431",
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
@@ -211,6 +211,8 @@ domain Network
211211
# True if this resource request is considered to be the 'same site' as the
212212
# request corresponding to the main frame.
213213
experimental optional boolean isSameSite
214+
# True when the resource request is ad-related.
215+
experimental optional boolean isAdRelated
214216

215217
# Details of a signed certificate timestamp (SCT).
216218
type SignedCertificateTimestamp extends object

pdl/js_protocol.pdl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,6 +1142,8 @@ domain Runtime
11421142
dataview
11431143
webassemblymemory
11441144
wasmvalue
1145+
# blink's subtypes.
1146+
trustedtype
11451147
# Object class (constructor) name. Specified for `object` type values only.
11461148
optional string className
11471149
# Remote object value in case of primitive values or JSON values (if it was requested).
@@ -1203,6 +1205,8 @@ domain Runtime
12031205
dataview
12041206
webassemblymemory
12051207
wasmvalue
1208+
# blink's subtypes.
1209+
trustedtype
12061210
# String representation of the object.
12071211
optional string description
12081212
# True iff some of the properties or entries of the original object did not fit.
@@ -1252,6 +1256,8 @@ domain Runtime
12521256
dataview
12531257
webassemblymemory
12541258
wasmvalue
1259+
# blink's subtypes.
1260+
trustedtype
12551261

12561262
experimental type EntryPreview extends object
12571263
properties

types/protocol.d.ts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1683,6 +1683,7 @@ export namespace Protocol {
16831683
Dataview = 'dataview',
16841684
Webassemblymemory = 'webassemblymemory',
16851685
Wasmvalue = 'wasmvalue',
1686+
Trustedtype = 'trustedtype',
16861687
}
16871688

16881689
/**
@@ -1698,7 +1699,7 @@ export namespace Protocol {
16981699
* NOTE: If you change anything here, make sure to also update
16991700
* `subtype` in `ObjectPreview` and `PropertyPreview` below.
17001701
*/
1701-
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue');
1702+
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue' | 'trustedtype');
17021703
/**
17031704
* Object class (constructor) name. Specified for `object` type values only.
17041705
*/
@@ -1784,6 +1785,7 @@ export namespace Protocol {
17841785
Dataview = 'dataview',
17851786
Webassemblymemory = 'webassemblymemory',
17861787
Wasmvalue = 'wasmvalue',
1788+
Trustedtype = 'trustedtype',
17871789
}
17881790

17891791
/**
@@ -1798,7 +1800,7 @@ export namespace Protocol {
17981800
/**
17991801
* Object subtype hint. Specified for `object` type values only.
18001802
*/
1801-
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue');
1803+
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue' | 'trustedtype');
18021804
/**
18031805
* String representation of the object.
18041806
*/
@@ -1849,6 +1851,7 @@ export namespace Protocol {
18491851
Dataview = 'dataview',
18501852
Webassemblymemory = 'webassemblymemory',
18511853
Wasmvalue = 'wasmvalue',
1854+
Trustedtype = 'trustedtype',
18521855
}
18531856

18541857
/**
@@ -1874,7 +1877,7 @@ export namespace Protocol {
18741877
/**
18751878
* Object subtype hint. Specified for `object` type values only.
18761879
*/
1877-
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue');
1880+
subtype?: ('array' | 'null' | 'node' | 'regexp' | 'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error' | 'proxy' | 'promise' | 'typedarray' | 'arraybuffer' | 'dataview' | 'webassemblymemory' | 'wasmvalue' | 'trustedtype');
18781881
}
18791882

18801883
/**
@@ -12256,6 +12259,11 @@ export namespace Protocol {
1225612259
* @experimental
1225712260
*/
1225812261
isSameSite?: boolean;
12262+
/**
12263+
* True when the resource request is ad-related.
12264+
* @experimental
12265+
*/
12266+
isAdRelated?: boolean;
1225912267
}
1226012268

1226112269
/**

0 commit comments

Comments
 (0)