Chromium Code Reviews| 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) |