Skip to content

Commit e47d08c

Browse files
committed
Roll protocol to r1634055
1 parent 357026f commit e47d08c

6 files changed

Lines changed: 35 additions & 17 deletions

File tree

changelog.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11

22

3+
## Roll protocol to r1634055 — _2026-05-21T05:48:46.000Z_
4+
###### Diff: [`357026f...c2ea733`](https://github.com/ChromeDevTools/devtools-protocol/compare/357026f...c2ea733)
5+
6+
```diff
7+
@@ domains/Target.pdl:36 @@ domain Target
8+
# Provides additional details for specific target types. For example, for
9+
# the type of "page", this may be set to "prerender".
10+
experimental optional string subtype
11+
+ # Embedder-specific target metadata. This is only set for targets of
12+
+ # type "tab".
13+
+ experimental optional object embedderData
14+
15+
# A filter used by target query/discovery/auto-attach operations.
16+
experimental type FilterEntry extends object
17+
```
18+
319
## Roll protocol to r1629771 — _2026-05-13T05:38:01.000Z_
420
###### Diff: [`f223775...bbfe84d`](https://github.com/ChromeDevTools/devtools-protocol/compare/f223775...bbfe84d)
521

@@ -42906,18 +42922,4 @@ index 4754f17c..8dad9c98 100644
4290642922
MemoryLimitExceeded
4290742923
# Prerenders can be cancelled when Chrome uses excessive memory. This is
4290842924
# recorded when it fails to get the memory usage.
42909-
```
42910-
42911-
## Roll protocol to r1172767 — _2023-07-20T04:26:30.000Z_
42912-
###### Diff: [`5ed816f...68de33a`](https://github.com/ChromeDevTools/devtools-protocol/compare/5ed816f...68de33a)
42913-
42914-
```diff
42915-
@@ browser_protocol.pdl:11247 @@ experimental domain Preload
42916-
PrerenderingDisabledByDevTools
42917-
ResourceLoadBlockedByClient
42918-
SpeculationRuleRemoved
42919-
+ ActivatedWithAuxiliaryBrowsingContexts
42920-
42921-
# Fired when a prerender attempt is completed.
42922-
event prerenderAttemptCompleted
4292342925
```

json/browser_protocol.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28752,6 +28752,13 @@
2875228752
"experimental": true,
2875328753
"optional": true,
2875428754
"type": "string"
28755+
},
28756+
{
28757+
"name": "embedderData",
28758+
"description": "Embedder-specific target metadata. This is only set for targets of\ntype \"tab\".",
28759+
"experimental": true,
28760+
"optional": true,
28761+
"type": "object"
2875528762
}
2875628763
]
2875728764
},

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

pdl/domains/Target.pdl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ domain Target
3636
# Provides additional details for specific target types. For example, for
3737
# the type of "page", this may be set to "prerender".
3838
experimental optional string subtype
39+
# Embedder-specific target metadata. This is only set for targets of
40+
# type "tab".
41+
experimental optional object embedderData
3942

4043
# A filter used by target query/discovery/auto-attach operations.
4144
experimental type FilterEntry extends object

types/protocol.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20804,6 +20804,12 @@ export namespace Protocol {
2080420804
* @experimental
2080520805
*/
2080620806
subtype?: string;
20807+
/**
20808+
* Embedder-specific target metadata. This is only set for targets of
20809+
* type "tab".
20810+
* @experimental
20811+
*/
20812+
embedderData?: any;
2080720813
}
2080820814

2080920815
/**

0 commit comments

Comments
 (0)