Index: Source/core/inspector/InspectorTracingAgent.h |
diff --git a/Source/core/inspector/InspectorTracingAgent.h b/Source/core/inspector/InspectorTracingAgent.h |
index 8110b76ed765ac67ae24880b2afa2cd460e73242..709cf46cde1e9dae7733e32ad6945018422f22af 100644 |
--- a/Source/core/inspector/InspectorTracingAgent.h |
+++ b/Source/core/inspector/InspectorTracingAgent.h |
@@ -31,9 +31,6 @@ public: |
virtual void restore() OVERRIDE; |
virtual void setFrontend(InspectorFrontend*) OVERRIDE; |
- void consoleTimeline(const String& title); |
- void consoleTimelineEnd(const String& title); |
- |
// Protocol method implementations. |
virtual void start(ErrorString*, const String& categoryFilter, const String&, const double*) OVERRIDE; |
virtual void end(ErrorString*); |
@@ -45,13 +42,10 @@ private: |
InspectorTracingAgent(InspectorClient*, InspectorWorkerAgent*); |
void emitMetadataEvents(); |
- void innerStart(const String& categoryFilter, bool fromConsole); |
String sessionId(); |
- void notifyTracingStopped(); |
int m_layerTreeId; |
InspectorClient* m_client; |
- Vector<String> m_consoleTimelines; |
InspectorFrontend::Tracing* m_frontend; |
InspectorWorkerAgent* m_workerAgent; |
}; |