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

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

Issue 2723273002: [inspector] introduced Debugger.scheduleStepIntoAsync (Closed)
Patch Set: fixed tests Created 3 years, 10 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
« no previous file with comments | « src/debug/debug.cc ('k') | src/inspector/inspector_protocol_config.json » ('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 0c8a1ab5443c94f9d396d287c1f0ee0271f5fcde..4885272b4143d920caa45d1aceb92adcffff3bec 100644
--- a/src/debug/debug-interface.h
+++ b/src/debug/debug-interface.h
@@ -102,8 +102,9 @@ enum StepAction {
};
void PrepareStep(Isolate* isolate, StepAction action);
+void ClearStepping(Isolate* isolate);
-bool HasNonBlackboxedFrameOnStack(Isolate* isolate);
+bool AllFramesOnStackAreBlackboxed(Isolate* isolate);
/**
* Out-of-memory callback function.
@@ -164,8 +165,9 @@ MaybeLocal<UnboundScript> CompileInspectorScript(Isolate* isolate,
class DebugDelegate {
public:
virtual ~DebugDelegate() {}
- virtual void PromiseEventOccurred(debug::PromiseDebugActionType type, int id,
- int parent_id) {}
+ virtual void PromiseEventOccurred(v8::Local<v8::Context> context,
+ debug::PromiseDebugActionType type, int id,
+ int parent_id, bool created_by_user) {}
virtual void ScriptCompiled(v8::Local<Script> script,
bool has_compile_error) {}
virtual void BreakProgramRequested(v8::Local<v8::Context> paused_context,
« no previous file with comments | « src/debug/debug.cc ('k') | src/inspector/inspector_protocol_config.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698