From b2a975fe4a6cfb6609a5f85f854b59f9399ab075 Mon Sep 17 00:00:00 2001 From: sjorsdonkers <72333389+sjorsdonkers@users.noreply.github.com> Date: Wed, 23 Apr 2025 15:50:01 +0200 Subject: [PATCH] remove executionContextCreated --- src/cdp/domains/runtime.zig | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/cdp/domains/runtime.zig b/src/cdp/domains/runtime.zig index 9ff22ddc..8e8b1079 100644 --- a/src/cdp/domains/runtime.zig +++ b/src/cdp/domains/runtime.zig @@ -50,20 +50,6 @@ fn sendInspector(cmd: anytype, action: anytype) !void { cmd.cdp.browser.runMicrotasks(); } -pub const ExecutionContextCreated = struct { - id: u64, - origin: []const u8, - name: []const u8, - uniqueId: []const u8, - auxData: ?AuxData = null, - - pub const AuxData = struct { - isDefault: bool = true, - type: []const u8 = "default", - frameId: []const u8, - }; -}; - fn logInspector(cmd: anytype, action: anytype) !void { const script = switch (action) { .evaluate => blk: {