Skip to content

Commit a73a111

Browse files
committed
Roll protocol to r1525085
1 parent 34e1e23 commit a73a111

File tree

8 files changed

+36
-80
lines changed

8 files changed

+36
-80
lines changed

changelog.md

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

22

3+
## Roll protocol to r1525085 — _2025-10-03T23:52:47.000Z_
4+
###### Diff: [`34e1e23...8ac8428`](https://github.com/ChromeDevTools/devtools-protocol/compare/34e1e23...8ac8428)
5+
6+
```diff
7+
@@ domains/Browser.pdl:119 @@ domain Browser
8+
# Context to override. When omitted, default browser context is used.
9+
optional BrowserContextID browserContextId
10+
11+
- # Grant specific permissions to the given origin and reject all others.
12+
- experimental command grantPermissions
13+
+ # Grant specific permissions to the given origin and reject all others. Deprecated. Use
14+
+ # setPermission instead.
15+
+ experimental deprecated command grantPermissions
16+
parameters
17+
array of PermissionType permissions
18+
# Origin the permission applies to, all origins if not specified.
19+
```
20+
321
## Roll protocol to r1523998 — _2025-10-02T04:30:37.000Z_
4-
###### Diff: [`8570f86...a6cdde4`](https://github.com/ChromeDevTools/devtools-protocol/compare/8570f86...a6cdde4)
22+
###### Diff: [`8570f86...edeffc1`](https://github.com/ChromeDevTools/devtools-protocol/compare/8570f86...edeffc1)
523

624
```diff
725
@@ domains/Network.pdl:1268 @@ domain Network
@@ -42042,74 +42060,4 @@ index d4102f5c..6285d9b6 100644
4204242060

4204342061
# Fired when a prerender attempt is completed.
4204442062
experimental event prerenderAttemptCompleted
42045-
```
42046-
42047-
## Roll protocol to r1097235 — _2023-01-26T04:28:05.000Z_
42048-
###### Diff: [`5caaeb9...c72fa9e`](https://github.com/ChromeDevTools/devtools-protocol/compare/5caaeb9...c72fa9e)
42049-
42050-
```diff
42051-
@@ browser_protocol.pdl:747 @@ experimental domain Audits
42052-
FormDuplicateIdForInputError
42053-
FormInputWithNoLabelError
42054-
FormAutocompleteAttributeEmptyError
42055-
+ FormEmptyIdAndNameAttributesForInputError
42056-
42057-
# Depending on the concrete errorType, different properties are set.
42058-
type GenericIssueDetails extends object
42059-
```
42060-
42061-
## Roll protocol to r1096618 — _2023-01-25T04:27:58.000Z_
42062-
###### Diff: [`23801b1...5caaeb9`](https://github.com/ChromeDevTools/devtools-protocol/compare/23801b1...5caaeb9)
42063-
42064-
```diff
42065-
@@ browser_protocol.pdl:746 @@ experimental domain Audits
42066-
FormLabelForNameError
42067-
FormDuplicateIdForInputError
42068-
FormInputWithNoLabelError
42069-
+ FormAutocompleteAttributeEmptyError
42070-
42071-
# Depending on the concrete errorType, different properties are set.
42072-
type GenericIssueDetails extends object
42073-
```
42074-
42075-
## Roll protocol to r1096014 — _2023-01-24T04:28:10.000Z_
42076-
###### Diff: [`9b03384...23801b1`](https://github.com/ChromeDevTools/devtools-protocol/compare/9b03384...23801b1)
42077-
42078-
```diff
42079-
@@ browser_protocol.pdl:1273 @@ domain Browser
42080-
# substring in their name are extracted. An empty or absent query returns
42081-
# all histograms.
42082-
optional string query
42083-
- # If true, retrieve delta since last call.
42084-
+ # If true, retrieve delta since last delta call.
42085-
optional boolean delta
42086-
42087-
returns
42088-
@@ -1285,7 +1285,7 @@ domain Browser
42089-
parameters
42090-
# Requested histogram name.
42091-
string name
42092-
- # If true, retrieve delta since last call.
42093-
+ # If true, retrieve delta since last delta call.
42094-
optional boolean delta
42095-
returns
42096-
# Histogram.
42097-
```
42098-
42099-
## Roll protocol to r1094867 — _2023-01-20T04:28:35.000Z_
42100-
###### Diff: [`6b557d0...9b03384`](https://github.com/ChromeDevTools/devtools-protocol/compare/6b557d0...9b03384)
42101-
42102-
```diff
42103-
@@ browser_protocol.pdl:5271 @@ domain Network
42104-
# are specified in third_party/blink/renderer/core/fetch/trust_token.idl.
42105-
experimental type TrustTokenParams extends object
42106-
properties
42107-
- TrustTokenOperationType type
42108-
+ TrustTokenOperationType operation
42109-
42110-
- # Only set for "token-redemption" type and determine whether
42111-
+ # Only set for "token-redemption" operation and determine whether
42112-
# to request a fresh SRR or use a still valid cached SRR.
42113-
enum refreshPolicy
42114-
UseCached
4211542063
```

json/browser_protocol.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3567,8 +3567,9 @@
35673567
},
35683568
{
35693569
"name": "grantPermissions",
3570-
"description": "Grant specific permissions to the given origin and reject all others.",
3570+
"description": "Grant specific permissions to the given origin and reject all others. Deprecated. Use\nsetPermission instead.",
35713571
"experimental": true,
3572+
"deprecated": true,
35723573
"parameters": [
35733574
{
35743575
"name": "permissions",

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

pdl/domains/Browser.pdl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,9 @@ domain Browser
119119
# Context to override. When omitted, default browser context is used.
120120
optional BrowserContextID browserContextId
121121

122-
# Grant specific permissions to the given origin and reject all others.
123-
experimental command grantPermissions
122+
# Grant specific permissions to the given origin and reject all others. Deprecated. Use
123+
# setPermission instead.
124+
experimental deprecated command grantPermissions
124125
parameters
125126
array of PermissionType permissions
126127
# Origin the permission applies to, all origins if not specified.

types/protocol-mapping.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1936,7 +1936,9 @@ export namespace ProtocolMapping {
19361936
returnType: void;
19371937
};
19381938
/**
1939-
* Grant specific permissions to the given origin and reject all others.
1939+
* Grant specific permissions to the given origin and reject all others. Deprecated. Use
1940+
* setPermission instead.
1941+
* @deprecated
19401942
* @experimental
19411943
*/
19421944
'Browser.grantPermissions': {

types/protocol-proxy-api.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1041,7 +1041,9 @@ export namespace ProtocolProxyApi {
10411041
setPermission(params: Protocol.Browser.SetPermissionRequest): Promise<void>;
10421042

10431043
/**
1044-
* Grant specific permissions to the given origin and reject all others.
1044+
* Grant specific permissions to the given origin and reject all others. Deprecated. Use
1045+
* setPermission instead.
1046+
* @deprecated
10451047
* @experimental
10461048
*/
10471049
grantPermissions(params: Protocol.Browser.GrantPermissionsRequest): Promise<void>;

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,9 @@ export namespace ProtocolTestsProxyApi {
11111111
setPermission(params: Protocol.Browser.SetPermissionRequest): Promise<{id: number, result: void, sessionId: string}>;
11121112

11131113
/**
1114-
* Grant specific permissions to the given origin and reject all others.
1114+
* Grant specific permissions to the given origin and reject all others. Deprecated. Use
1115+
* setPermission instead.
1116+
* @deprecated
11151117
* @experimental
11161118
*/
11171119
grantPermissions(params: Protocol.Browser.GrantPermissionsRequest): Promise<{id: number, result: void, sessionId: string}>;

0 commit comments

Comments
 (0)