Index: Source/core/inspector/InspectorTimelineAgent.h |
diff --git a/Source/core/inspector/InspectorTimelineAgent.h b/Source/core/inspector/InspectorTimelineAgent.h |
index 33e6bb1da07fb1d375304818c7c66c7d7c0f6ece..1c5375532cf2f964e0e2f89fbb387442da3a70ee 100644 |
--- a/Source/core/inspector/InspectorTimelineAgent.h |
+++ b/Source/core/inspector/InspectorTimelineAgent.h |
@@ -115,9 +115,9 @@ |
}; |
static PassOwnPtr<InspectorTimelineAgent> create(InspectorPageAgent* pageAgent, InspectorLayerTreeAgent* layerTreeAgent, |
- InspectorOverlay* overlay, InspectorType type, InspectorClient* client, InspectorAgentRegistry* registry) |
+ InspectorOverlay* overlay, InspectorType type, InspectorClient* client) |
{ |
- return adoptPtr(new InspectorTimelineAgent(pageAgent, layerTreeAgent, overlay, type, client, registry)); |
+ return adoptPtr(new InspectorTimelineAgent(pageAgent, layerTreeAgent, overlay, type, client)); |
} |
virtual ~InspectorTimelineAgent(); |
@@ -231,7 +231,7 @@ |
friend class TimelineRecordStack; |
- InspectorTimelineAgent(InspectorPageAgent*, InspectorLayerTreeAgent*, InspectorOverlay*, InspectorType, InspectorClient*, InspectorAgentRegistry*); |
+ InspectorTimelineAgent(InspectorPageAgent*, InspectorLayerTreeAgent*, InspectorOverlay*, InspectorType, InspectorClient*); |
// Trace event handlers |
void onBeginImplSideFrame(const TraceEventDispatcher::TraceEvent&); |
@@ -318,7 +318,6 @@ |
bool m_mayEmitFirstPaint; |
HashSet<String> m_liveEvents; |
double m_lastProgressTimestamp; |
- InspectorAgentRegistry* m_registry; |
}; |
} // namespace WebCore |