File tree Expand file tree Collapse file tree
gen-src/ChromeDevtoolsProtocol/Model/Runtime Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 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 },
Original file line number Diff line number Diff line change 1- 574743d844d43efcaf5eb6b0a16951c3 protocol.json
1+ ed1bf1fefaed4996f6907907387bee39 protocol.json
You can’t perform that action at this time.
0 commit comments