OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // This file contains the top-level interface (provided by the tracing |
| 6 // application's ServiceProvider) used by things that want to register |
| 7 // themselves to participate in tracing. |
| 8 |
| 9 [DartPackage="mojo_services"] |
| 10 module tracing; |
| 11 |
| 12 import "tracing/interfaces/tracing.mojom"; |
| 13 |
| 14 [ServiceName="tracing.TraceProviderRegistry"] |
| 15 interface TraceProviderRegistry { |
| 16 RegisterTraceProvider(TraceProvider trace_provider); |
| 17 }; |
OLD | NEW |