Skip to content

Commit 81caa99

Browse files
author
Jakub Kulhan
committed
autoupdated protocol.json & generated files
1 parent de24233 commit 81caa99

File tree

5 files changed

+46
-2
lines changed

5 files changed

+46
-2
lines changed

gen-src/ChromeDevtoolsProtocol/Model/Audits/DeprecationIssueTypeEnum.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ final class DeprecationIssueTypeEnum
5454
public const PREFIXED_VIDEO_EXIT_FULLSCREEN = 'PrefixedVideoExitFullscreen';
5555
public const PREFIXED_VIDEO_EXIT_FULL_SCREEN = 'PrefixedVideoExitFullScreen';
5656
public const PREFIXED_VIDEO_SUPPORTS_FULLSCREEN = 'PrefixedVideoSupportsFullscreen';
57+
public const PRIVACY_SANDBOX_EXTENSIONS_A_P_I = 'PrivacySandboxExtensionsAPI';
5758
public const RANGE_EXPAND = 'RangeExpand';
5859
public const REQUESTED_SUBRESOURCE_WITH_EMBEDDED_CREDENTIALS = 'RequestedSubresourceWithEmbeddedCredentials';
5960
public const RTC_CONSTRAINT_ENABLE_DTLS_SRTP_FALSE = 'RTCConstraintEnableDtlsSrtpFalse';

gen-src/ChromeDevtoolsProtocol/Model/Network/ResponseReceivedExtraInfoEvent.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,20 @@ final class ResponseReceivedExtraInfoEvent implements \JsonSerializable
5353
*/
5454
public $headersText;
5555

56+
/**
57+
* The cookie partition key that will be used to store partitioned cookies set in this response. Only sent when partitioned cookies are enabled.
58+
*
59+
* @var string|null
60+
*/
61+
public $cookiePartitionKey;
62+
63+
/**
64+
* True if partitioned cookies are enabled, but the partition key is not serializeable to string.
65+
*
66+
* @var bool|null
67+
*/
68+
public $cookiePartitionKeyOpaque;
69+
5670

5771
/**
5872
* @param object $data
@@ -82,6 +96,12 @@ public static function fromJson($data)
8296
if (isset($data->headersText)) {
8397
$instance->headersText = (string)$data->headersText;
8498
}
99+
if (isset($data->cookiePartitionKey)) {
100+
$instance->cookiePartitionKey = (string)$data->cookiePartitionKey;
101+
}
102+
if (isset($data->cookiePartitionKeyOpaque)) {
103+
$instance->cookiePartitionKeyOpaque = (bool)$data->cookiePartitionKeyOpaque;
104+
}
85105
return $instance;
86106
}
87107

@@ -110,6 +130,12 @@ public function jsonSerialize()
110130
if ($this->headersText !== null) {
111131
$data->headersText = $this->headersText;
112132
}
133+
if ($this->cookiePartitionKey !== null) {
134+
$data->cookiePartitionKey = $this->cookiePartitionKey;
135+
}
136+
if ($this->cookiePartitionKeyOpaque !== null) {
137+
$data->cookiePartitionKeyOpaque = $this->cookiePartitionKeyOpaque;
138+
}
113139
return $data;
114140
}
115141
}

gen-src/ChromeDevtoolsProtocol/Model/Page/PrerenderFinalStatusEnum.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,6 @@ final class PrerenderFinalStatusEnum
6363
public const PRIMARY_MAIN_FRAME_RENDERER_PROCESS_CRASHED = 'PrimaryMainFrameRendererProcessCrashed';
6464
public const PRIMARY_MAIN_FRAME_RENDERER_PROCESS_KILLED = 'PrimaryMainFrameRendererProcessKilled';
6565
public const ACTIVATION_FRAME_POLICY_NOT_COMPATIBLE = 'ActivationFramePolicyNotCompatible';
66+
public const PRELOADING_DISABLED = 'PreloadingDisabled';
67+
public const BATTERY_SAVER_ENABLED = 'BatterySaverEnabled';
6668
}

protocol.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1611,6 +1611,7 @@
16111611
"PrefixedVideoExitFullscreen",
16121612
"PrefixedVideoExitFullScreen",
16131613
"PrefixedVideoSupportsFullscreen",
1614+
"PrivacySandboxExtensionsAPI",
16141615
"RangeExpand",
16151616
"RequestedSubresourceWithEmbeddedCredentials",
16161617
"RTCConstraintEnableDtlsSrtpFalse",
@@ -16202,6 +16203,18 @@
1620216203
"description": "Raw response header text as it was received over the wire. The raw text may not always be available, such as in the case of HTTP/2 or QUIC.",
1620316204
"optional": true,
1620416205
"type": "string"
16206+
},
16207+
{
16208+
"name": "cookiePartitionKey",
16209+
"description": "The cookie partition key that will be used to store partitioned cookies set in this response. Only sent when partitioned cookies are enabled.",
16210+
"optional": true,
16211+
"type": "string"
16212+
},
16213+
{
16214+
"name": "cookiePartitionKeyOpaque",
16215+
"description": "True if partitioned cookies are enabled, but the partition key is not serializeable to string.",
16216+
"optional": true,
16217+
"type": "boolean"
1620516218
}
1620616219
]
1620716220
},
@@ -18919,7 +18932,9 @@
1891918932
"TabClosedWithoutUserGesture",
1892018933
"PrimaryMainFrameRendererProcessCrashed",
1892118934
"PrimaryMainFrameRendererProcessKilled",
18922-
"ActivationFramePolicyNotCompatible"
18935+
"ActivationFramePolicyNotCompatible",
18936+
"PreloadingDisabled",
18937+
"BatterySaverEnabled"
1892318938
]
1892418939
}
1892518940
],

protocol.json.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f5b38979d43e892cc25dcdb59989558c protocol.json
1+
4deb6c46eb371effaf6df1ff13a310c4 protocol.json

0 commit comments

Comments
 (0)