Skip to content

Commit 0842d0c

Browse files
author
Jakub Kulhan
committed
autoupdated protocol.json & generated files
1 parent 5321017 commit 0842d0c

3 files changed

Lines changed: 21 additions & 1 deletion

File tree

gen-src/ChromeDevtoolsProtocol/Model/Runtime/ExecutionContextDestroyedEvent.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ final class ExecutionContextDestroyedEvent implements \JsonSerializable
1818
*/
1919
public $executionContextId;
2020

21+
/**
22+
* Unique Id of the destroyed context
23+
*
24+
* @var string
25+
*/
26+
public $executionContextUniqueId;
27+
2128

2229
/**
2330
* @param object $data
@@ -29,6 +36,9 @@ public static function fromJson($data)
2936
if (isset($data->executionContextId)) {
3037
$instance->executionContextId = (int)$data->executionContextId;
3138
}
39+
if (isset($data->executionContextUniqueId)) {
40+
$instance->executionContextUniqueId = (string)$data->executionContextUniqueId;
41+
}
3242
return $instance;
3343
}
3444

@@ -39,6 +49,9 @@ public function jsonSerialize()
3949
if ($this->executionContextId !== null) {
4050
$data->executionContextId = $this->executionContextId;
4151
}
52+
if ($this->executionContextUniqueId !== null) {
53+
$data->executionContextUniqueId = $this->executionContextUniqueId;
54+
}
4255
return $data;
4356
}
4457
}

protocol.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22692,7 +22692,14 @@
2269222692
{
2269322693
"name": "executionContextId",
2269422694
"description": "Id of the destroyed context",
22695+
"deprecated": true,
2269522696
"$ref": "ExecutionContextId"
22697+
},
22698+
{
22699+
"name": "executionContextUniqueId",
22700+
"description": "Unique Id of the destroyed context",
22701+
"experimental": true,
22702+
"type": "string"
2269622703
}
2269722704
]
2269822705
},

protocol.json.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
574743d844d43efcaf5eb6b0a16951c3 protocol.json
1+
ed1bf1fefaed4996f6907907387bee39 protocol.json

0 commit comments

Comments
 (0)