Index: Source/core/inspector/InspectorDebuggerAgent.cpp |
diff --git a/Source/core/inspector/InspectorDebuggerAgent.cpp b/Source/core/inspector/InspectorDebuggerAgent.cpp |
index 63b611a3276a731d0517882f1949c518b4ce154b..1de6ec26f151bf641c02afb3136dfba3df171030 100644 |
--- a/Source/core/inspector/InspectorDebuggerAgent.cpp |
+++ b/Source/core/inspector/InspectorDebuggerAgent.cpp |
@@ -81,8 +81,8 @@ static String generateBreakpointId(const String& scriptId, int lineNumber, int c |
return scriptId + ':' + String::number(lineNumber) + ':' + String::number(columnNumber) + breakpointIdSuffix(source); |
} |
-InspectorDebuggerAgent::InspectorDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager) |
- : InspectorBaseAgent<InspectorDebuggerAgent>("Debugger", instrumentingAgents, inspectorState) |
+InspectorDebuggerAgent::InspectorDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorState* inspectorState, InjectedScriptManager* injectedScriptManager) |
+ : InspectorBaseAgent(instrumentingAgents, inspectorState) |
, m_injectedScriptManager(injectedScriptManager) |
, m_frontend(0) |
, m_pausedScriptState(0) |
@@ -820,7 +820,7 @@ void InspectorDebuggerAgent::clearBreakDetails() |
void InspectorDebuggerAgent::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
{ |
MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::InspectorDebuggerAgent); |
- InspectorBaseAgent<InspectorDebuggerAgent>::reportMemoryUsage(memoryObjectInfo); |
+ InspectorBaseAgent::reportMemoryUsage(memoryObjectInfo); |
info.addMember(m_injectedScriptManager, "injectedScriptManager"); |
info.addWeakPointer(m_frontend); |
info.addMember(m_pausedScriptState, "pausedScriptState"); |