| Index: Source/WebCore/inspector/InspectorDebuggerAgent.cpp
|
| ===================================================================
|
| --- Source/WebCore/inspector/InspectorDebuggerAgent.cpp (revision 143604)
|
| +++ Source/WebCore/inspector/InspectorDebuggerAgent.cpp (working copy)
|
| @@ -60,7 +60,7 @@
|
| static const char pauseOnExceptionsState[] = "pauseOnExceptionsState";
|
| };
|
|
|
| -const char* InspectorDebuggerAgent::backtraceObjectGroup = "backtrace-object-group";
|
| +const char* InspectorDebuggerAgent::backtraceObjectGroup = "backtrace";
|
|
|
| InspectorDebuggerAgent::InspectorDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager)
|
| : InspectorBaseAgent<InspectorDebuggerAgent>("Debugger", instrumentingAgents, inspectorState)
|
| @@ -455,6 +455,7 @@
|
| {
|
| if (!assertPaused(errorString))
|
| return;
|
| + m_injectedScriptManager->releaseObjectGroup(InspectorDebuggerAgent::backtraceObjectGroup);
|
| scriptDebugServer().stepOverStatement();
|
| }
|
|
|
| @@ -462,6 +463,7 @@
|
| {
|
| if (!assertPaused(errorString))
|
| return;
|
| + m_injectedScriptManager->releaseObjectGroup(InspectorDebuggerAgent::backtraceObjectGroup);
|
| scriptDebugServer().stepIntoStatement();
|
| m_listener->stepInto();
|
| }
|
| @@ -470,6 +472,7 @@
|
| {
|
| if (!assertPaused(errorString))
|
| return;
|
| + m_injectedScriptManager->releaseObjectGroup(InspectorDebuggerAgent::backtraceObjectGroup);
|
| scriptDebugServer().stepOutOfFunction();
|
| }
|
|
|
|
|