Skip to content

Commit dae4579

Browse files
committed
Roll protocol to r1445099
1 parent a4ea2da commit dae4579

5 files changed

Lines changed: 32 additions & 6 deletions

File tree

changelog.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,29 @@
11

22

3+
## Roll protocol to r1445099 — _2025-04-10T04:30:17.000Z_
4+
###### Diff: [`a4ea2da...40d0e13`](https://github.com/ChromeDevTools/devtools-protocol/compare/a4ea2da...40d0e13)
5+
6+
```diff
7+
@@ browser_protocol.pdl:1537 @@ domain Browser
8+
enum
9+
openTabSearch
10+
closeTabSearch
11+
+ openGlic
12+
13+
# Set permission settings for given origin.
14+
experimental command setPermission
15+
@@ -6333,6 +6334,7 @@ domain Network
16+
cache
17+
fetch-event
18+
race-network-and-fetch-handler
19+
+ race-network-and-cache
20+
21+
experimental type ServiceWorkerRouterInfo extends object
22+
properties
23+
```
24+
325
## Roll protocol to r1443917 — _2025-04-08T04:30:16.000Z_
4-
###### Diff: [`cbcb4a1...b097869`](https://github.com/ChromeDevTools/devtools-protocol/compare/cbcb4a1...b097869)
26+
###### Diff: [`cbcb4a1...a4ea2da`](https://github.com/ChromeDevTools/devtools-protocol/compare/cbcb4a1...a4ea2da)
527

628
```diff
729
@@ browser_protocol.pdl:8453 @@ domain Page

json/browser_protocol.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3026,7 +3026,8 @@
30263026
"type": "string",
30273027
"enum": [
30283028
"openTabSearch",
3029-
"closeTabSearch"
3029+
"closeTabSearch",
3030+
"openGlic"
30303031
]
30313032
},
30323033
{
@@ -13519,7 +13520,8 @@
1351913520
"network",
1352013521
"cache",
1352113522
"fetch-event",
13522-
"race-network-and-fetch-handler"
13523+
"race-network-and-fetch-handler",
13524+
"race-network-and-cache"
1352313525
]
1352413526
},
1352513527
{

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.1443917",
3+
"version": "0.0.1445099",
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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1537,6 +1537,7 @@ domain Browser
15371537
enum
15381538
openTabSearch
15391539
closeTabSearch
1540+
openGlic
15401541

15411542
# Set permission settings for given origin.
15421543
experimental command setPermission
@@ -6333,6 +6334,7 @@ domain Network
63336334
cache
63346335
fetch-event
63356336
race-network-and-fetch-handler
6337+
race-network-and-cache
63366338

63376339
experimental type ServiceWorkerRouterInfo extends object
63386340
properties

types/protocol.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4270,7 +4270,7 @@ export namespace Protocol {
42704270
/**
42714271
* Browser command ids used by executeBrowserCommand.
42724272
*/
4273-
export type BrowserCommandId = ('openTabSearch' | 'closeTabSearch');
4273+
export type BrowserCommandId = ('openTabSearch' | 'closeTabSearch' | 'openGlic');
42744274

42754275
/**
42764276
* Chrome histogram bucket.
@@ -10966,7 +10966,7 @@ export namespace Protocol {
1096610966
/**
1096710967
* Source of service worker router.
1096810968
*/
10969-
export type ServiceWorkerRouterSource = ('network' | 'cache' | 'fetch-event' | 'race-network-and-fetch-handler');
10969+
export type ServiceWorkerRouterSource = ('network' | 'cache' | 'fetch-event' | 'race-network-and-fetch-handler' | 'race-network-and-cache');
1097010970

1097110971
export interface ServiceWorkerRouterInfo {
1097210972
/**

0 commit comments

Comments
 (0)