Skip to content

Commit 957f52b

Browse files
committed
remove resetContextGroup
1 parent 9eed656 commit 957f52b

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

src/binding.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1682,10 +1682,6 @@ void v8_inspector__Inspector__ContextCreated(v8_inspector::V8Inspector *self,
16821682
self->contextCreated(info);
16831683
}
16841684

1685-
void v8_inspector__Inspector__resetContextGroup(v8_inspector::V8Inspector *self, int contextGroupId) {
1686-
self->resetContextGroup(contextGroupId);
1687-
}
1688-
16891685
// InspectorSession
16901686

16911687
void v8_inspector__Session__DELETE(v8_inspector::V8InspectorSession* self) {

src/binding.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,6 @@ void v8_inspector__Inspector__ContextCreated(Inspector *self, const char *name,
10641064
const char *auxData, const usize auxData_len,
10651065
int contextGroupId,
10661066
const Context* context);
1067-
void v8_inspector__Inspector__resetContextGroup(Inspector *self, int contextGroupId) ;
10681067

10691068
// RemoteObject
10701069
void v8_inspector__RemoteObject__DELETE(RemoteObject *self);

src/v8.zig

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2503,12 +2503,6 @@ pub const Inspector = struct {
25032503
);
25042504
self.ctx_handle = ctx.handle;
25052505
}
2506-
2507-
pub fn resetContextGroup(
2508-
self: *Inspector,
2509-
) void {
2510-
c.v8_inspector__Inspector__resetContextGroup(self.handle, contextGroupId);
2511-
}
25122506
};
25132507

25142508
// InspectorClient

0 commit comments

Comments
 (0)