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

Unified Diff: src/inspector/v8-debugger-agent-impl.h

Issue 2748503002: [inspector] changed a way of preserving stepping between tasks (Closed)
Patch Set: removed willExecuteScript from tests Created 3 years, 9 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-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;

Powered by Google App Engine
This is Rietveld 408576698