Skip to content

Commit

Permalink
Roll protocol to r1316850
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed Jun 19, 2024
1 parent 1e50e23 commit 210a6c6
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 2 deletions.
18 changes: 17 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@


## Roll protocol to r1316850 — _2024-06-19T04:27:32.000Z_
###### Diff: [`1e50e23...c6845e2`](https://github.com/ChromeDevTools/devtools-protocol/compare/1e50e23...c6845e2)

```diff
@@ browser_protocol.pdl:7119 @@ domain Network
# The number of obtained Trust Tokens on a successful "Issuance" operation.
optional integer issuedTokenCount

+ # Fired once security policy has been updated.
+ experimental event policyUpdated
+
# Fired once when parsing the .wbn file has succeeded.
# The event contains the information about the web bundle contents.
experimental event subresourceWebBundleMetadataReceived
```

## Roll protocol to r1315554 — _2024-06-15T04:28:24.000Z_
###### Diff: [`db710ff...cac2f39`](https://github.com/ChromeDevTools/devtools-protocol/compare/db710ff...cac2f39)
###### Diff: [`db710ff...1e50e23`](https://github.com/ChromeDevTools/devtools-protocol/compare/db710ff...1e50e23)

```diff
@@ browser_protocol.pdl:156 @@ experimental domain Accessibility
Expand Down
5 changes: 5 additions & 0 deletions json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -15411,6 +15411,11 @@
}
]
},
{
"name": "policyUpdated",
"description": "Fired once security policy has been updated.",
"experimental": true
},
{
"name": "subresourceWebBundleMetadataReceived",
"description": "Fired once when parsing the .wbn file has succeeded.\nThe event contains the information about the web bundle contents.",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devtools-protocol",
"version": "0.0.1315554",
"version": "0.0.1316850",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
3 changes: 3 additions & 0 deletions pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -7119,6 +7119,9 @@ domain Network
# The number of obtained Trust Tokens on a successful "Issuance" operation.
optional integer issuedTokenCount

# Fired once security policy has been updated.
experimental event policyUpdated

# Fired once when parsing the .wbn file has succeeded.
# The event contains the information about the web bundle contents.
experimental event subresourceWebBundleMetadataReceived
Expand Down
4 changes: 4 additions & 0 deletions types/protocol-mapping.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,10 @@ export namespace ProtocolMapping {
* or after the response was received.
*/
'Network.trustTokenOperationDone': [Protocol.Network.TrustTokenOperationDoneEvent];
/**
* Fired once security policy has been updated.
*/
'Network.policyUpdated': [];
/**
* Fired once when parsing the .wbn file has succeeded.
* The event contains the information about the web bundle contents.
Expand Down
5 changes: 5 additions & 0 deletions types/protocol-proxy-api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2604,6 +2604,11 @@ export namespace ProtocolProxyApi {
*/
on(event: 'trustTokenOperationDone', listener: (params: Protocol.Network.TrustTokenOperationDoneEvent) => void): void;

/**
* Fired once security policy has been updated.
*/
on(event: 'policyUpdated', listener: () => void): void;

/**
* Fired once when parsing the .wbn file has succeeded.
* The event contains the information about the web bundle contents.
Expand Down
7 changes: 7 additions & 0 deletions types/protocol-tests-proxy-api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2790,6 +2790,13 @@ export namespace ProtocolTestsProxyApi {
offTrustTokenOperationDone(listener: (event: { params: Protocol.Network.TrustTokenOperationDoneEvent }) => void): void;
onceTrustTokenOperationDone(eventMatcher?: (event: { params: Protocol.Network.TrustTokenOperationDoneEvent }) => boolean): Promise<{ params: Protocol.Network.TrustTokenOperationDoneEvent }>;

/**
* Fired once security policy has been updated.
*/
onPolicyUpdated(listener: (event: ) => void): void;
offPolicyUpdated(listener: (event: ) => void): void;
oncePolicyUpdated(eventMatcher?: (event: ) => boolean): Promise<>;

/**
* Fired once when parsing the .wbn file has succeeded.
* The event contains the information about the web bundle contents.
Expand Down

0 comments on commit 210a6c6

Please sign in to comment.