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

Unified Diff: Source/core/inspector/InspectorTracingAgent.cpp

Issue 254613002: DevTools: add Tracing agent on back-end (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: removed a stray call to TracingAgent.enable() Created 6 years, 8 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
« no previous file with comments | « Source/core/inspector/InspectorTracingAgent.h ('k') | Source/devtools/front_end/sdk/TimelineManager.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorTracingAgent.cpp
diff --git a/Source/core/inspector/InspectorTracingAgent.cpp b/Source/core/inspector/InspectorTracingAgent.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..cb81ec83148d739fba030d7ea391f61b52c28bb4
--- /dev/null
+++ b/Source/core/inspector/InspectorTracingAgent.cpp
@@ -0,0 +1,68 @@
+//
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+//
+
+#include "config.h"
+
+#include "core/inspector/InspectorTracingAgent.h"
+
+#include "core/inspector/IdentifiersFactory.h"
+#include "core/inspector/InspectorClient.h"
+#include "core/inspector/InspectorState.h"
+#include "platform/TraceEvent.h"
+
+namespace WebCore {
+
+namespace TracingAgentState {
+const char sessionId[] = "sessionId";
+}
+
+namespace {
+const char devtoolsMetadataEventCategory[] = TRACE_DISABLED_BY_DEFAULT("devtools.timeline");
+}
+
+InspectorTracingAgent::InspectorTracingAgent()
+ : InspectorBaseAgent<InspectorTracingAgent>("Tracing")
+ , m_layerTreeId(0)
+{
+}
+
+void InspectorTracingAgent::restore()
+{
+ emitMetadataEvents();
+}
+
+void InspectorTracingAgent::start(ErrorString*, const String&, const String&, const double*, String* outSessionId)
+{
+ innerStart();
+ *outSessionId = sessionId();
+}
+
+void InspectorTracingAgent::innerStart()
+{
+ String sessionId = IdentifiersFactory::createIdentifier();
+ m_state->setString(TracingAgentState::sessionId, sessionId);
+ emitMetadataEvents();
+}
+
+String InspectorTracingAgent::sessionId()
+{
+ return m_state->getString(TracingAgentState::sessionId);
+}
+
+void InspectorTracingAgent::emitMetadataEvents()
+{
+ TRACE_EVENT_INSTANT1(devtoolsMetadataEventCategory, "TracingStartedInPage", "sessionId", sessionId().utf8());
+ if (m_layerTreeId)
+ setLayerTreeId(m_layerTreeId);
+}
+
+void InspectorTracingAgent::setLayerTreeId(int layerTreeId)
+{
+ m_layerTreeId = layerTreeId;
+ TRACE_EVENT_INSTANT2(devtoolsMetadataEventCategory, "SetLayerTreeId", "sessionId", sessionId().utf8(), "layerTreeId", m_layerTreeId);
+}
+
+}
« no previous file with comments | « Source/core/inspector/InspectorTracingAgent.h ('k') | Source/devtools/front_end/sdk/TimelineManager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698