|
1 | 1 |
|
2 | 2 |
|
| 3 | +## Roll protocol to r1504847 — _2025-08-22T04:32:04.000Z_ |
| 4 | +###### Diff: [`65c042d...03b5ae0`](https://github.com/ChromeDevTools/devtools-protocol/compare/65c042d...03b5ae0) |
| 5 | + |
| 6 | +```diff |
| 7 | +@@ domains/Media.pdl:66 @@ experimental domain Media |
| 8 | + # Extra data attached to an error, such as an HRESULT, Video Codec, etc. |
| 9 | + object data |
| 10 | + |
| 11 | ++ type Player extends object |
| 12 | ++ properties |
| 13 | ++ PlayerId playerId |
| 14 | ++ optional DOM.BackendNodeId domNodeId |
| 15 | ++ |
| 16 | + # This can be called multiple times, and can be used to set / override / |
| 17 | + # remove player properties. A null propValue indicates removal. |
| 18 | + event playerPropertiesChanged |
| 19 | +@@ -93,11 +98,11 @@ experimental domain Media |
| 20 | + array of PlayerError errors |
| 21 | + |
| 22 | + # Called whenever a player is created, or when a new agent joins and receives |
| 23 | +- # a list of active players. If an agent is restored, it will receive the full |
| 24 | +- # list of player ids and all events again. |
| 25 | +- event playersCreated |
| 26 | ++ # a list of active players. If an agent is restored, it will receive one |
| 27 | ++ # event for each active player. |
| 28 | ++ event playerCreated |
| 29 | + parameters |
| 30 | +- array of PlayerId players |
| 31 | ++ Player player |
| 32 | + |
| 33 | + # Enables the Media domain |
| 34 | + command enable |
| 35 | +diff --git a/pdl/domains/Network.pdl b/pdl/domains/Network.pdl |
| 36 | +index fca59cc7..8958da96 100644 |
| 37 | +--- a/pdl/domains/Network.pdl |
| 38 | ++++ b/pdl/domains/Network.pdl |
| 39 | +@@ -296,6 +296,25 @@ domain Network |
| 40 | + corp-not-same-site |
| 41 | + sri-message-signature-mismatch |
| 42 | + |
| 43 | ++ # Sets Controls for IP Proxy of requests. |
| 44 | ++ # Page reload is required before the new behavior will be observed. |
| 45 | ++ experimental type IpProxyStatus extends string |
| 46 | ++ enum |
| 47 | ++ Available |
| 48 | ++ FeatureNotEnabled |
| 49 | ++ MaskedDomainListNotEnabled |
| 50 | ++ MaskedDomainListNotPopulated |
| 51 | ++ AuthTokensUnavailable |
| 52 | ++ Unavailable |
| 53 | ++ BypassedByDevTools |
| 54 | ++ |
| 55 | ++ # Returns enum representing if IP Proxy of requests is available |
| 56 | ++ # or reason it is not active. |
| 57 | ++ experimental command getIPProtectionProxyStatus |
| 58 | ++ returns |
| 59 | ++ # Whether IP proxy is available |
| 60 | ++ IpProxyStatus status |
| 61 | ++ |
| 62 | + # The reason why request was blocked. |
| 63 | + type CorsError extends string |
| 64 | + enum |
| 65 | +@@ -1088,6 +1107,10 @@ domain Network |
| 66 | + optional integer maxPostDataSize |
| 67 | + # Whether DirectSocket chunk send/receive events should be reported. |
| 68 | + experimental optional boolean reportDirectSocketTraffic |
| 69 | ++ # Enable storing response bodies outside of renderer, so that these survive |
| 70 | ++ # a cross-process navigation. Requires maxTotalBufferSize to be set. |
| 71 | ++ # Currently defaults to false. |
| 72 | ++ experimental optional boolean enableDurableMessages |
| 73 | + |
| 74 | + # Returns all browser cookies. Depending on the backend support, will return detailed cookie |
| 75 | + # information in the `cookies` field. |
| 76 | +``` |
| 77 | + |
3 | 78 | ## Roll protocol to r1503754 — _2025-08-20T04:32:27.000Z_ |
4 | | -###### Diff: [`d3d8ab5...bc5c75a`](https://github.com/ChromeDevTools/devtools-protocol/compare/d3d8ab5...bc5c75a) |
| 79 | +###### Diff: [`d3d8ab5...65c042d`](https://github.com/ChromeDevTools/devtools-protocol/compare/d3d8ab5...65c042d) |
5 | 80 |
|
6 | 81 | ```diff |
7 | 82 | @@ domains/Network.pdl:1088 @@ domain Network |
@@ -41850,18 +41925,4 @@ index d4102f5c..6285d9b6 100644 |
41850 | 41925 | # Returns information about all running processes. |
41851 | 41926 | command getProcessInfo |
41852 | 41927 | returns |
41853 | | -``` |
41854 | | - |
41855 | | -## Roll protocol to r1079624 — _2022-12-06T04:28:29.000Z_ |
41856 | | -###### Diff: [`8af7bb2...c1e172c`](https://github.com/ChromeDevTools/devtools-protocol/compare/8af7bb2...c1e172c) |
41857 | | - |
41858 | | -```diff |
41859 | | -@@ browser_protocol.pdl:1100 @@ domain Browser |
41860 | | - enum |
41861 | | - granted |
41862 | | - denied |
41863 | | -+ prompt |
41864 | | - |
41865 | | - # Definition of PermissionDescriptor defined in the Permissions API: |
41866 | | - # https://w3c.github.io/permissions/#dictdef-permissiondescriptor. |
41867 | 41928 | ``` |
0 commit comments