|
1 | 1 |
|
2 | 2 |
|
| 3 | +## Roll protocol to r1545402 — _2025-11-15T04:31:18.000Z_ |
| 4 | +###### Diff: [`a134eaa...a77be31`](https://github.com/ChromeDevTools/devtools-protocol/compare/a134eaa...a77be31) |
| 5 | + |
| 6 | +```diff |
| 7 | +@@ domains/Network.pdl:298 @@ domain Network |
| 8 | + corp-not-same-site |
| 9 | + sri-message-signature-mismatch |
| 10 | + |
| 11 | +- # Sets Controls for IP Proxy of requests. |
| 12 | +- # Page reload is required before the new behavior will be observed. |
| 13 | +- experimental type IpProxyStatus extends string |
| 14 | +- enum |
| 15 | +- Available |
| 16 | +- FeatureNotEnabled |
| 17 | +- MaskedDomainListNotEnabled |
| 18 | +- MaskedDomainListNotPopulated |
| 19 | +- AuthTokensUnavailable |
| 20 | +- Unavailable |
| 21 | +- BypassedByDevTools |
| 22 | +- |
| 23 | +- # Returns enum representing if IP Proxy of requests is available |
| 24 | +- # or reason it is not active. |
| 25 | +- experimental command getIPProtectionProxyStatus |
| 26 | +- returns |
| 27 | +- # Whether IP proxy is available |
| 28 | +- IpProxyStatus status |
| 29 | +- |
| 30 | +- # Sets bypass IP Protection Proxy boolean. |
| 31 | +- experimental command setIPProtectionProxyBypassEnabled |
| 32 | +- parameters |
| 33 | +- # Whether IP Proxy is being bypassed by devtools; false by default. |
| 34 | +- boolean enabled |
| 35 | +- |
| 36 | + # The reason why request was blocked. |
| 37 | + type CorsError extends string |
| 38 | + enum |
| 39 | +@@ -527,9 +502,6 @@ domain Network |
| 40 | + Security.SecurityState securityState |
| 41 | + # Security details for the request. |
| 42 | + optional SecurityDetails securityDetails |
| 43 | +- # Indicates whether the request was sent through IP Protection proxies. If |
| 44 | +- # set to true, the request used the IP Protection privacy feature. |
| 45 | +- experimental optional boolean isIpProtectionUsed |
| 46 | + |
| 47 | + # WebSocket request data. |
| 48 | + type WebSocketRequest extends object |
| 49 | +diff --git a/pdl/domains/Target.pdl b/pdl/domains/Target.pdl |
| 50 | +index abe66920..21c4e959 100644 |
| 51 | +--- a/pdl/domains/Target.pdl |
| 52 | ++++ b/pdl/domains/Target.pdl |
| 53 | +@@ -323,7 +323,8 @@ domain Target |
| 54 | + # This can be the page or tab target ID. |
| 55 | + TargetID targetId |
| 56 | + # The id of the panel we want DevTools to open initially. Currently |
| 57 | +- # supported panels are elements, console, network, sources and resources. |
| 58 | ++ # supported panels are elements, console, network, sources, resources |
| 59 | ++ # and performance. |
| 60 | + optional string panelId |
| 61 | + returns |
| 62 | + # The targetId of DevTools page target. |
| 63 | +``` |
| 64 | + |
3 | 65 | ## Roll protocol to r1543509 — _2025-11-12T04:32:18.000Z_ |
4 | | -###### Diff: [`c40015d...418844c`](https://github.com/ChromeDevTools/devtools-protocol/compare/c40015d...418844c) |
| 66 | +###### Diff: [`c40015d...a134eaa`](https://github.com/ChromeDevTools/devtools-protocol/compare/c40015d...a134eaa) |
5 | 67 |
|
6 | 68 | ```diff |
7 | 69 | @@ domains/Page.pdl:172 @@ domain Page |
@@ -41862,48 +41924,4 @@ index 0dbdc01d..7a3c772c 100644 |
41862 | 41924 |
|
41863 | 41925 | # Depending on the concrete errorType, different properties are set. |
41864 | 41926 | type GenericIssueDetails extends object |
41865 | | -``` |
41866 | | - |
41867 | | -## Roll protocol to r1107588 — _2023-02-21T04:28:49.000Z_ |
41868 | | -###### Diff: [`30ceb43...8e5df71`](https://github.com/ChromeDevTools/devtools-protocol/compare/30ceb43...8e5df71) |
41869 | | - |
41870 | | -```diff |
41871 | | -@@ browser_protocol.pdl:8555 @@ domain Page |
41872 | | - # that is incompatible with prerender and has caused the cancellation of the attempt |
41873 | | - optional string disallowedApiMethod |
41874 | | - |
41875 | | -- # List of Prefetch status, which refers to PreloadingTriggeringOutcome. |
41876 | | -- type PrefetchStatus extends string |
41877 | | -+ # Preloading status values, see also PreloadingTriggeringOutcome. This |
41878 | | -+ # status is shared by prefetchStatusUpdated and prerenderStatusUpdated. |
41879 | | -+ type PreloadingStatus extends string |
41880 | | - enum |
41881 | | -+ Pending |
41882 | | - Running |
41883 | | - Ready |
41884 | | - Success |
41885 | | - Failure |
41886 | | -- # PreloadingTriggeringOutcome which not used by prefetch. |
41887 | | -+ # PreloadingTriggeringOutcome which not used by prefetch nor prerender. |
41888 | | - NotSupported |
41889 | | - |
41890 | | - # TODO(crbug/1384419): Create a dedicated domain for preloading. |
41891 | | -@@ -8572,7 +8574,16 @@ domain Page |
41892 | | - # The frame id of the frame initiating prefetch. |
41893 | | - FrameId initiatingFrameId |
41894 | | - string prefetchUrl |
41895 | | -- PrefetchStatus status |
41896 | | -+ PreloadingStatus status |
41897 | | -+ |
41898 | | -+ # TODO(crbug/1384419): Create a dedicated domain for preloading. |
41899 | | -+ # Fired when a prerender attempt is updated. |
41900 | | -+ experimental event prerenderStatusUpdated |
41901 | | -+ parameters |
41902 | | -+ # The frame id of the frame initiating prerender. |
41903 | | -+ FrameId initiatingFrameId |
41904 | | -+ string prerenderingUrl |
41905 | | -+ PreloadingStatus status |
41906 | | - |
41907 | | - event loadEventFired |
41908 | | - parameters |
41909 | 41927 | ``` |
0 commit comments