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

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

Issue 2668763003: [inspector] V8DebuggerAgent cleanup (Closed)
Patch Set: reverted semantic change - only cleanup Created 3 years, 11 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.h
diff --git a/src/inspector/v8-debugger.h b/src/inspector/v8-debugger.h
index 5859c1d5abbe4fceee179977d8becdd95b80219e..bc9b2d087b49c815bd279f2d84074810f6b3c10c 100644
--- a/src/inspector/v8-debugger.h
+++ b/src/inspector/v8-debugger.h
@@ -94,6 +94,8 @@ class V8Debugger : public v8::debug::DebugDelegate {
void setMaxAsyncTaskStacksForTest(int limit) { m_maxAsyncCallStacks = limit; }
+ void setSkipAllPauses(bool skipAll) { m_skipAllPauses = skipAll; }
+
private:
void compileDebuggerScript();
v8::MaybeLocal<v8::Value> callDebuggerMethod(const char* functionName,
@@ -163,6 +165,7 @@ class V8Debugger : public v8::debug::DebugDelegate {
bool m_runningNestedMessageLoop;
int m_ignoreScriptParsedEventsCounter;
bool m_scheduledOOMBreak = false;
+ bool m_skipAllPauses = false;
using AsyncTaskToStackTrace =
protocol::HashMap<void*, std::unique_ptr<V8StackTraceImpl>>;
« no previous file with comments | « src/debug/debug.cc ('k') | src/inspector/v8-debugger.cc » ('j') | src/inspector/v8-debugger.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698