Skip to content

Commit 63aa321

Browse files
committed
Roll protocol to r1452169
1 parent 22067e8 commit 63aa321

5 files changed

Lines changed: 32 additions & 25 deletions

File tree

changelog.md

Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,31 @@
11

22

3+
## Roll protocol to r1452169 — _2025-04-26T04:29:56.000Z_
4+
###### Diff: [`22067e8...c2c8409`](https://github.com/ChromeDevTools/devtools-protocol/compare/22067e8...c2c8409)
5+
6+
```diff
7+
@@ js_protocol.pdl:649 @@ domain Debugger
8+
Runtime.ExecutionContextId executionContextId
9+
# Content hash of the script, SHA-256.
10+
string hash
11+
- # For Wasm modules, the content of the `build_id` custom section.
12+
+ # For Wasm modules, the content of the `build_id` custom section. For JavaScript the `debugId` magic comment.
13+
string buildId
14+
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
15+
optional object executionContextAuxData
16+
@@ -690,7 +690,7 @@ domain Debugger
17+
Runtime.ExecutionContextId executionContextId
18+
# Content hash of the script, SHA-256.
19+
string hash
20+
- # For Wasm modules, the content of the `build_id` custom section.
21+
+ # For Wasm modules, the content of the `build_id` custom section. For JavaScript the `debugId` magic comment.
22+
string buildId
23+
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
24+
optional object executionContextAuxData
25+
```
26+
327
## Roll protocol to r1451615 — _2025-04-25T04:30:43.000Z_
4-
###### Diff: [`376b7a3...c92fcc3`](https://github.com/ChromeDevTools/devtools-protocol/compare/376b7a3...c92fcc3)
28+
###### Diff: [`376b7a3...22067e8`](https://github.com/ChromeDevTools/devtools-protocol/compare/376b7a3...22067e8)
529

630
```diff
731
@@ browser_protocol.pdl:9186 @@ domain Page
@@ -13809,21 +13833,4 @@ index 8d8211b..2d56043 100644
1380913833

1381013834
# Fired when a prerender attempt is completed.
1381113835
event prerenderAttemptCompleted
13812-
```
13813-
13814-
## Roll protocol to r1027518 — _2022-07-23T04:32:37.000Z_
13815-
###### Diff: [`84a4545...5036b2e`](https://github.com/ChromeDevTools/devtools-protocol/compare/84a4545...5036b2e)
13816-
13817-
```diff
13818-
@@ js_protocol.pdl:261 @@ domain Debugger
13819-
optional string streamId
13820-
# The total number of lines in the disassembly text.
13821-
integer totalNumberOfLines
13822-
- # The offsets of all function bodies plus one additional entry pointing
13823-
- # one by past the end of the last function.
13824-
+ # The offsets of all function bodies, in the format [start1, end1,
13825-
+ # start2, end2, ...] where all ends are exclusive.
13826-
array of integer functionBodyOffsets
13827-
# The first chunk of disassembly.
13828-
WasmDisassemblyChunk chunk
1382913836
```

json/js_protocol.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1331,7 +1331,7 @@
13311331
},
13321332
{
13331333
"name": "buildId",
1334-
"description": "For Wasm modules, the content of the `build_id` custom section.",
1334+
"description": "For Wasm modules, the content of the `build_id` custom section. For JavaScript the `debugId` magic comment.",
13351335
"type": "string"
13361336
},
13371337
{
@@ -1440,7 +1440,7 @@
14401440
},
14411441
{
14421442
"name": "buildId",
1443-
"description": "For Wasm modules, the content of the `build_id` custom section.",
1443+
"description": "For Wasm modules, the content of the `build_id` custom section. For JavaScript the `debugId` magic comment.",
14441444
"type": "string"
14451445
},
14461446
{

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

pdl/js_protocol.pdl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ domain Debugger
649649
Runtime.ExecutionContextId executionContextId
650650
# Content hash of the script, SHA-256.
651651
string hash
652-
# For Wasm modules, the content of the `build_id` custom section.
652+
# For Wasm modules, the content of the `build_id` custom section. For JavaScript the `debugId` magic comment.
653653
string buildId
654654
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
655655
optional object executionContextAuxData
@@ -690,7 +690,7 @@ domain Debugger
690690
Runtime.ExecutionContextId executionContextId
691691
# Content hash of the script, SHA-256.
692692
string hash
693-
# For Wasm modules, the content of the `build_id` custom section.
693+
# For Wasm modules, the content of the `build_id` custom section. For JavaScript the `debugId` magic comment.
694694
string buildId
695695
# Embedder-specific auxiliary data likely matching {isDefault: boolean, type: 'default'|'isolated'|'worker', frameId: string}
696696
optional object executionContextAuxData

types/protocol.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ export namespace Protocol {
934934
*/
935935
hash: string;
936936
/**
937-
* For Wasm modules, the content of the `build_id` custom section.
937+
* For Wasm modules, the content of the `build_id` custom section. For JavaScript the `debugId` magic comment.
938938
*/
939939
buildId: string;
940940
/**
@@ -1013,7 +1013,7 @@ export namespace Protocol {
10131013
*/
10141014
hash: string;
10151015
/**
1016-
* For Wasm modules, the content of the `build_id` custom section.
1016+
* For Wasm modules, the content of the `build_id` custom section. For JavaScript the `debugId` magic comment.
10171017
*/
10181018
buildId: string;
10191019
/**

0 commit comments

Comments
 (0)