| Index: services/tracing/public/interfaces/tracing.mojom | 
| diff --git a/services/tracing/public/interfaces/tracing.mojom b/services/tracing/public/interfaces/tracing.mojom | 
| deleted file mode 100644 | 
| index eba167be9e193f79ae883cb56ba66f753df356da..0000000000000000000000000000000000000000 | 
| --- a/services/tracing/public/interfaces/tracing.mojom | 
| +++ /dev/null | 
| @@ -1,66 +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.mojom; | 
| - | 
| -// To participate in the tracing ecosystem, implement the Provider interface | 
| -// connect to the tracing service & create a Recorder. Then, when the provider's | 
| -// Start() function is called collect tracing data and pass it back via the | 
| -// provided Recorder interface up until Stop() is called. | 
| - | 
| -interface Provider { | 
| -  // Categories can either be the empty string to mean the default set of | 
| -  // categories or a comma-delimited list of categories to trace. | 
| -  StartTracing(string categories, Recorder recorder); | 
| -  StopTracing(); | 
| -}; | 
| - | 
| -interface Recorder { | 
| -  Record(string json); | 
| -}; | 
| - | 
| -interface Collector { | 
| -  // Request tracing data from all connected providers to stream to | 
| -  // |stream|. | 
| -  Start(handle<data_pipe_producer> stream, string categories); | 
| - | 
| -  // Stop tracing and flush results to the |stream| passed in to Start(). | 
| -  // Closes |stream| when all data is collected. | 
| -  StopAndFlush(); | 
| -}; | 
| - | 
| -// These times are used to determine startup performance metrics. | 
| -// TODO(msw): Find a way to convert *_time metrics into TimeTicks earlier (ref: | 
| -// https://goo.gl/vZ8dZW). | 
| -struct StartupPerformanceTimes { | 
| -  // TODO(msw): Rename to match "BrowserMainEntryTimeAbsolute" metric? | 
| -  int64 service_manager_process_creation_time; | 
| -  int64 service_manager_main_entry_point_time; | 
| -  int64 browser_message_loop_start_ticks; | 
| -  int64 browser_window_display_ticks; | 
| -  int64 browser_open_tabs_time_delta; | 
| -  // TODO(msw): Rename to avoid "web contents"? | 
| -  int64 first_web_contents_main_frame_load_ticks; | 
| -  // TODO(msw): Rename to match "FirstWebContents.NonEmptyPaint" metric? | 
| -  int64 first_visually_non_empty_layout_ticks; | 
| -}; | 
| - | 
| -// This interface accepts startup performance timing from a variety of sources. | 
| -interface StartupPerformanceDataCollector { | 
| -  // These setters may be called many times, only the first time is recorded. | 
| -  SetServiceManagerProcessCreationTime(int64 time); | 
| -  SetServiceManagerMainEntryPointTime(int64 time); | 
| -  SetBrowserMessageLoopStartTicks(int64 ticks); | 
| -  SetBrowserWindowDisplayTicks(int64 ticks); | 
| -  SetBrowserOpenTabsTimeDelta(int64 delta); | 
| -  SetFirstWebContentsMainFrameLoadTicks(int64 ticks); | 
| -  SetFirstVisuallyNonEmptyLayoutTicks(int64 ticks); | 
| - | 
| -  // Get the currently available startup performance times. | 
| -  GetStartupPerformanceTimes() => (StartupPerformanceTimes times); | 
| -}; | 
| - | 
| -interface Factory { | 
| -  CreateRecorder(Provider provider); | 
| -}; | 
|  |