Tracing.recordClockSyncMarkerRecord a clock sync marker in the trace.
| Name | Type | Description |
|---|---|---|
syncId | string | The ID of this clock sync marker |
{
"id": 1,
"method": "Tracing.recordClockSyncMarker",
"params": {
"syncId": "syncId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Tracing.recordClockSyncMarker', {"syncId": "syncId-value"});
console.log(result);