cdp: remove send sync

Signed-off-by: Francis Bouvier <francis@lightpanda.io>
This commit is contained in:
Francis Bouvier
2024-10-21 18:29:10 +02:00
parent 20dd140c31
commit 8508c21080
4 changed files with 5 additions and 14 deletions

View File

@@ -256,8 +256,7 @@ fn disposeBrowserContext(
// output
const res = try result(alloc, msg.id, null, .{}, null);
defer alloc.free(res);
try server.sendSync(ctx, res);
try server.sendAsync(ctx, res);
return error.DisposeBrowserContext;
}
@@ -345,8 +344,7 @@ fn closeTarget(
success: bool = true,
};
const res = try result(alloc, msg.id, Resp, Resp{}, null);
defer alloc.free(res);
try server.sendSync(ctx, res);
try server.sendAsync(ctx, res);
// Inspector.detached event
const InspectorDetached = struct {