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

Unified Diff: src/inspector/v8-debugger.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/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;

Powered by Google App Engine
This is Rietveld 408576698