Chromium Code Reviews| Index: src/debug/debug-interface.h |
| diff --git a/src/debug/debug-interface.h b/src/debug/debug-interface.h |
| index c43a9701f00774639670c7bf71d72c6b647d2a5c..81e61116676518e3d9edc3989d5bcfe58b4b2016 100644 |
| --- a/src/debug/debug-interface.h |
| +++ b/src/debug/debug-interface.h |
| @@ -102,6 +102,7 @@ enum StepAction { |
| }; |
| void PrepareStep(Isolate* isolate, StepAction action); |
| +void ClearStepping(Isolate* isolate); |
| bool HasNonBlackboxedFrameOnStack(Isolate* isolate); |
|
dgozman
2017/03/03 19:47:06
nit: while we are here, let's rename this one as w
kozy
2017/03/03 23:14:02
Done.
|
| @@ -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, |