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

Unified Diff: services/tracing/tracing.mojom

Issue 769963004: Add tracing service and make the shell+sky_viewer+services talk to it (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 | « services/tracing/trace_data_sink.cc ('k') | sky/tools/debugger/prompt/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/tracing/tracing.mojom
diff --git a/services/tracing/tracing.mojom b/services/tracing/tracing.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..e1d0ca0e2a2a076bc1f19fc6b8e111ba40115989
--- /dev/null
+++ b/services/tracing/tracing.mojom
@@ -0,0 +1,31 @@
+// 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.
+
+module tracing;
+
+// To particate in the tracing ecosystem, implement the TraceController
+// interface and connect to the tracing app. Then, when the controller's Start()
+// function is called collect tracing data and pass it back via the
+// TraceDataCollector interface up until Stop() is called.
+
+[Client=TraceDataCollector]
+interface TraceController {
+ StartTracing(string categories);
+ StopTracing();
+};
+
+[Client=TraceController]
+interface TraceDataCollector {
+ DataCollected(string json);
+ EndTracing();
+};
+
+interface TraceCoordinator {
+ // Request tracing data from all connected TraceControllers to save in a file
+ // derived from |base_name|.
+ Start(string base_name, string categories);
+
+ // Stop tracing and flush results to file.
+ StopAndFlush();
+};
« no previous file with comments | « services/tracing/trace_data_sink.cc ('k') | sky/tools/debugger/prompt/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698