File tree 3 files changed +0
-19
lines changed
3 files changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -224,8 +224,6 @@ class V8_EXPORT V8Inspector {
224
224
virtual void resetContextGroup (int contextGroupId) = 0;
225
225
226
226
// Various instrumentation.
227
- virtual void willExecuteScript (v8::Local<v8::Context>, int scriptId) = 0;
228
- virtual void didExecuteScript (v8::Local<v8::Context>) = 0;
229
227
virtual void idleStarted () = 0;
230
228
virtual void idleFinished () = 0;
231
229
Original file line number Diff line number Diff line change @@ -285,21 +285,6 @@ void V8InspectorImpl::resetContextGroup(int contextGroupId) {
285
285
m_debugger->wasmTranslation ()->Clear ();
286
286
}
287
287
288
- void V8InspectorImpl::willExecuteScript (v8::Local<v8::Context> context,
289
- int scriptId) {
290
- if (V8DebuggerAgentImpl* agent =
291
- enabledDebuggerAgentForGroup (contextGroupId (context))) {
292
- agent->willExecuteScript (scriptId);
293
- }
294
- }
295
-
296
- void V8InspectorImpl::didExecuteScript (v8::Local<v8::Context> context) {
297
- if (V8DebuggerAgentImpl* agent =
298
- enabledDebuggerAgentForGroup (contextGroupId (context))) {
299
- agent->didExecuteScript ();
300
- }
301
- }
302
-
303
288
void V8InspectorImpl::idleStarted () {
304
289
for (auto it = m_sessions.begin (); it != m_sessions.end (); ++it) {
305
290
if (it->second ->profilerAgent ()->idleStarted ()) return ;
Original file line number Diff line number Diff line change @@ -85,8 +85,6 @@ class V8InspectorImpl : public V8Inspector {
85
85
void contextCreated (const V8ContextInfo&) override ;
86
86
void contextDestroyed (v8::Local<v8::Context>) override ;
87
87
void resetContextGroup (int contextGroupId) override ;
88
- void willExecuteScript (v8::Local<v8::Context>, int scriptId) override ;
89
- void didExecuteScript (v8::Local<v8::Context>) override ;
90
88
void idleStarted () override ;
91
89
void idleFinished () override ;
92
90
unsigned exceptionThrown (v8::Local<v8::Context>, const StringView& message,
You can’t perform that action at this time.
0 commit comments