Index: src/inspector/v8-debugger.h |
diff --git a/src/inspector/v8-debugger.h b/src/inspector/v8-debugger.h |
index 5859c1d5abbe4fceee179977d8becdd95b80219e..a7ddd4722fba60153ef20785d7a6e12eafacdf0d 100644 |
--- a/src/inspector/v8-debugger.h |
+++ b/src/inspector/v8-debugger.h |
@@ -62,6 +62,7 @@ class V8Debugger : public v8::debug::DebugDelegate { |
// Passing 0 will result in reporting all scripts. |
void getCompiledScripts(int contextGroupId, |
std::vector<std::unique_ptr<V8DebuggerScript>>&); |
+ void reportRequestedModules(); |
void enable(); |
void disable(); |
@@ -151,6 +152,9 @@ class V8Debugger : public v8::debug::DebugDelegate { |
bool IsFunctionBlackboxed(v8::Local<v8::debug::Script> script, |
const v8::debug::Location& start, |
const v8::debug::Location& end) override; |
+ void ModuleRequested(v8::Local<v8::debug::Script> referer, |
+ v8::Local<v8::debug::Script> requested, |
+ v8::Local<v8::String> specifier) override; |
v8::Isolate* m_isolate; |
V8InspectorImpl* m_inspector; |