mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-12-17 08:48:58 +00:00
cdp: remove send sync
Signed-off-by: Francis Bouvier <francis@lightpanda.io>
This commit is contained in:
@@ -225,8 +225,7 @@ pub fn sendEvent(
|
||||
const resp = Resp{ .method = name, .params = params, .sessionId = sessionID };
|
||||
|
||||
const event_msg = try stringify(alloc, resp);
|
||||
defer alloc.free(event_msg);
|
||||
try server.sendSync(ctx, event_msg);
|
||||
try server.sendAsync(ctx, event_msg);
|
||||
}
|
||||
|
||||
fn getParams(
|
||||
|
||||
@@ -331,8 +331,7 @@ fn navigate(
|
||||
.loaderId = ctx.state.loaderID,
|
||||
};
|
||||
const res = try result(alloc, msg.id, Resp, resp, msg.sessionID);
|
||||
defer alloc.free(res);
|
||||
try server.sendSync(ctx, res);
|
||||
try server.sendAsync(ctx, res);
|
||||
|
||||
// TODO: at this point do we need async the following actions to be async?
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user