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

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

Issue 2592893003: [inspector] migrate AsycEvent to tupple (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « src/debug/debug.cc ('k') | src/inspector/v8-debugger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug-interface.h
diff --git a/src/debug/debug-interface.h b/src/debug/debug-interface.h
index b5c7dab516cd2645c905231dc378c80958025d00..f23e84b5220c81afa5ee784d8d66b9ed234d84c9 100644
--- a/src/debug/debug-interface.h
+++ b/src/debug/debug-interface.h
@@ -187,6 +187,14 @@ class WasmScript : public Script {
debug::WasmDisassembly DisassembleFunction(int function_index) const;
};
+class AsyncTaskEventData {
+ public:
+ AsyncTaskEventType type() const;
+ int id() const;
+ MaybeLocal<String> name() const;
+ static AsyncTaskEventData* Cast(Value* value);
+};
+
void GetLoadedScripts(Isolate* isolate, PersistentValueVector<Script>& scripts);
MaybeLocal<UnboundScript> CompileInspectorScript(Isolate* isolate,
« no previous file with comments | « src/debug/debug.cc ('k') | src/inspector/v8-debugger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698