Skip to content

Commit

Permalink
Roll protocol to r1376096
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed Oct 31, 2024
1 parent 6866f7c commit 2354f74
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 18 deletions.
30 changes: 15 additions & 15 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@


## Roll protocol to r1376096 — _2024-10-31T04:30:05.000Z_
###### Diff: [`6866f7c...96abcae`](https://github.com/ChromeDevTools/devtools-protocol/compare/6866f7c...96abcae)

```diff
@@ browser_protocol.pdl:11720 @@ experimental domain WebAudio
suspended
running
closed
+ interrupted

# Enum of AudioNode types
type NodeType extends string
```

## Roll protocol to r1375038 — _2024-10-29T04:29:43.000Z_
###### Diff: [`b213dca...51bc546`](https://github.com/ChromeDevTools/devtools-protocol/compare/b213dca...51bc546)
###### Diff: [`b213dca...6866f7c`](https://github.com/ChromeDevTools/devtools-protocol/compare/b213dca...6866f7c)

```diff
@@ browser_protocol.pdl:10715 @@ experimental domain Storage
Expand Down Expand Up @@ -12098,18 +12112,4 @@ index 18cf0c7..8e43695 100644
MediaSourceAbortRemove
MediaSourceDurationTruncatingBuffered
NoSysexWebMIDIWithoutPermission
```

## Roll protocol to r1004164 — _2022-05-17T09:15:39.000Z_
###### Diff: [`218b848...cdd508b`](https://github.com/ChromeDevTools/devtools-protocol/compare/218b848...cdd508b)

```diff
@@ browser_protocol.pdl:2274 @@ domain DOM
# Whether the node is SVG.
optional boolean isSVG
optional CompatibilityMode compatibilityMode
+ optional BackendNode assignedSlot

# A structure holding an RGBA color.
type RGBA extends object
```
3 changes: 2 additions & 1 deletion json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -24927,7 +24927,8 @@
"enum": [
"suspended",
"running",
"closed"
"closed",
"interrupted"
]
},
{
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.1375038",
"version": "0.0.1376096",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
1 change: 1 addition & 0 deletions pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -11720,6 +11720,7 @@ experimental domain WebAudio
suspended
running
closed
interrupted

# Enum of AudioNode types
type NodeType extends string
Expand Down
2 changes: 1 addition & 1 deletion types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17883,7 +17883,7 @@ export namespace Protocol {
/**
* Enum of AudioContextState from the spec
*/
export type ContextState = ('suspended' | 'running' | 'closed');
export type ContextState = ('suspended' | 'running' | 'closed' | 'interrupted');

/**
* Enum of AudioNode types
Expand Down

0 comments on commit 2354f74

Please sign in to comment.