Index: Source/core/inspector/InspectorDebuggerAgent.cpp |
diff --git a/Source/core/inspector/InspectorDebuggerAgent.cpp b/Source/core/inspector/InspectorDebuggerAgent.cpp |
index b4e9a0259f1dc7ff5b89f29bd2d802e4c32ce0a7..a318d8151441f7ef2db80a059058053cf7c8d50f 100644 |
--- a/Source/core/inspector/InspectorDebuggerAgent.cpp |
+++ b/Source/core/inspector/InspectorDebuggerAgent.cpp |
@@ -69,8 +69,8 @@ static String generateBreakpointId(const String& scriptId, int lineNumber, int c |
(source == InspectorDebuggerAgent::UserBreakpointSource ? String() : String(":debug")); |
} |
-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) |
@@ -808,7 +808,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"); |