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

Unified Diff: mojo/services/tracing/tracing.mojom

Issue 1278673002: Add stats collection for telemetry startup.warm.blank_page test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update comment. Created 5 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
« no previous file with comments | « mojo/services/tracing/public/interfaces/tracing.mojom ('k') | mojo/services/tracing/tracing_app.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/tracing/tracing.mojom
diff --git a/mojo/services/tracing/tracing.mojom b/mojo/services/tracing/tracing.mojom
deleted file mode 100644
index fa8be1f655df695b43a8a17d294dd40f74b30a54..0000000000000000000000000000000000000000
--- a/mojo/services/tracing/tracing.mojom
+++ /dev/null
@@ -1,28 +0,0 @@
-// 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 participate 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 provided
-// TraceDataCollector interface up until Stop() is called.
-
-interface TraceController {
- StartTracing(string categories, TraceDataCollector collector);
- StopTracing();
-};
-
-interface TraceDataCollector {
- DataCollected(string json);
-};
-
-interface TraceCoordinator {
- // Request tracing data from all connected TraceControllers to stream to
- // |stream|.
- Start(handle<data_pipe_producer> stream, string categories);
-
- // Stop tracing and flush results to file.
- StopAndFlush();
-};
« no previous file with comments | « mojo/services/tracing/public/interfaces/tracing.mojom ('k') | mojo/services/tracing/tracing_app.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698