| Index: src/inspector/v8-debugger-agent-impl.h
|
| diff --git a/src/inspector/v8-debugger-agent-impl.h b/src/inspector/v8-debugger-agent-impl.h
|
| index 45402dd6a2d316a911dc24da1a459acc55c4bc6a..9cb2add53e6b5a7b1e529d53d82600260a3d0816 100644
|
| --- a/src/inspector/v8-debugger-agent-impl.h
|
| +++ b/src/inspector/v8-debugger-agent-impl.h
|
| @@ -134,8 +134,6 @@ class V8DebuggerAgentImpl : public protocol::Debugger::Backend {
|
| bool isPromiseRejection, bool isUncaught, bool isOOMBreak);
|
| void didContinue();
|
| void didParseSource(std::unique_ptr<V8DebuggerScript>, bool success);
|
| - void willExecuteScript(int scriptId);
|
| - void didExecuteScript();
|
|
|
| bool isFunctionBlackboxed(const String16& scriptId,
|
| const v8::debug::Location& start,
|
| @@ -150,14 +148,10 @@ class V8DebuggerAgentImpl : public protocol::Debugger::Backend {
|
| private:
|
| void enableImpl();
|
|
|
| - void schedulePauseOnNextStatementIfSteppingInto();
|
| -
|
| Response currentCallFrames(
|
| std::unique_ptr<protocol::Array<protocol::Debugger::CallFrame>>*);
|
| std::unique_ptr<protocol::Runtime::StackTrace> currentAsyncStackTrace();
|
|
|
| - void changeJavaScriptRecursionLevel(int step);
|
| -
|
| void setPauseOnExceptionsImpl(int);
|
|
|
| std::unique_ptr<protocol::Debugger::Location> resolveBreakpoint(
|
| @@ -206,10 +200,7 @@ class V8DebuggerAgentImpl : public protocol::Debugger::Backend {
|
| std::unique_ptr<protocol::DictionaryValue> breakAuxData);
|
| void popBreakDetails();
|
|
|
| - DebuggerStep m_scheduledDebuggerStep;
|
| bool m_javaScriptPauseScheduled;
|
| -
|
| - int m_recursionLevelForStepOut;
|
| bool m_skipAllPauses = false;
|
|
|
| std::unique_ptr<V8Regex> m_blackboxPattern;
|
|
|