| Index: src/inspector/v8-debugger.h
|
| diff --git a/src/inspector/v8-debugger.h b/src/inspector/v8-debugger.h
|
| index 5859c1d5abbe4fceee179977d8becdd95b80219e..2680657f86f41d65676b3ac2d6025c3fce2fec38 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 reportExistingModules();
|
| 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 ModuleResolved(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;
|
|
|