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

Unified Diff: Source/core/inspector/InspectorDebuggerAgent.cpp

Issue 1163923005: Fix crash in inspector-protocol/debugger/debugger-pause-dedicated-worker.html (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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 | « Source/core/core.gypi ('k') | Source/core/inspector/InspectorTaskRunner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorDebuggerAgent.cpp
diff --git a/Source/core/inspector/InspectorDebuggerAgent.cpp b/Source/core/inspector/InspectorDebuggerAgent.cpp
index 101fc1d810c4734bf3968ea7b63a1f8d1692746d..2132b7bb49baafb61a8457e4afddfd2481dad888 100644
--- a/Source/core/inspector/InspectorDebuggerAgent.cpp
+++ b/Source/core/inspector/InspectorDebuggerAgent.cpp
@@ -240,11 +240,13 @@ void InspectorDebuggerAgent::enable(ErrorString*)
void InspectorDebuggerAgent::disable(ErrorString*)
{
+ fprintf(stderr, "InspectorDebuggerAgent::disable %p>>\n", this);
sergeyv 2015/06/03 14:07:49 lets be silent
yurys 2015/06/03 14:29:12 Done.
if (!enabled())
return;
disable();
m_state->setBoolean(DebuggerAgentState::debuggerEnabled, false);
+ fprintf(stderr, "InspectorDebuggerAgent::disable %p<<\n", this);
}
static PassOwnPtr<ScriptRegexp> compileSkipCallFramePattern(String patternText)
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/inspector/InspectorTaskRunner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698