Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Unified Diff: src/debug/debug-interface.h

Issue 2668613002: [inspector] added Debugger.moduleRequested notification
Patch Set: addressed comments Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/debug/debug-interface.h
diff --git a/src/debug/debug-interface.h b/src/debug/debug-interface.h
index b25ad905508c067dea9353a031ebc28924432d6e..55f1d10ee0950075d892e0e431e8c28d00823501 100644
--- a/src/debug/debug-interface.h
+++ b/src/debug/debug-interface.h
@@ -146,6 +146,7 @@ class WasmScript : public Script {
};
void GetLoadedScripts(Isolate* isolate, PersistentValueVector<Script>& scripts);
+void ReportExistingModules(Isolate* isolate);
neis 2017/02/01 13:38:55 Please add a comment describing what this does, as
kozy 2017/02/01 16:39:25 Done.
MaybeLocal<UnboundScript> CompileInspectorScript(Isolate* isolate,
Local<String> source);
@@ -169,6 +170,9 @@ class DebugDelegate {
const debug::Location& end) {
return false;
}
+ virtual void ModuleResolved(v8::Local<debug::Script> referer,
+ v8::Local<debug::Script> requested,
+ v8::Local<v8::String> specifier) {}
};
void SetDebugDelegate(Isolate* isolate, DebugDelegate* listener);

Powered by Google App Engine
This is Rietveld 408576698