Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1326)

Unified Diff: Source/core/inspector/InspectorWorkerAgent.h

Issue 460363002: Record DevTools metadata events on worker threads when starting recoring tracing based Timeline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/inspector/InspectorWorkerAgent.h
diff --git a/Source/core/inspector/InspectorWorkerAgent.h b/Source/core/inspector/InspectorWorkerAgent.h
index 1d6fedd189956129c984664ac4b91003fb1c9bc3..4ade9af31c86ba7521dc598bff6cf1f372eaa856 100644
--- a/Source/core/inspector/InspectorWorkerAgent.h
+++ b/Source/core/inspector/InspectorWorkerAgent.h
@@ -68,6 +68,8 @@ public:
virtual void sendMessageToWorker(ErrorString*, int workerId, const RefPtr<JSONObject>& message) OVERRIDE;
virtual void setAutoconnectToWorkers(ErrorString*, bool value) OVERRIDE;
+ void setTracingSessionId(const String&);
+
private:
InspectorWorkerAgent();
void createWorkerFrontendChannelsForExistingWorkers();
@@ -81,6 +83,7 @@ private:
WorkerChannels m_idToChannel;
typedef HashMap<WorkerGlobalScopeProxy*, String> DedicatedWorkers;
DedicatedWorkers m_dedicatedWorkers;
+ String m_tracingSessionId;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698