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

Unified Diff: tools/telemetry/telemetry/timeline/timeline_data.py

Issue 441873007: Move timeline and importers to use telemetry.value.TraceValue (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
Index: tools/telemetry/telemetry/timeline/timeline_data.py
diff --git a/tools/telemetry/telemetry/timeline/timeline_data.py b/tools/telemetry/telemetry/timeline/timeline_data.py
deleted file mode 100644
index ea326bd7851696c9122c463a3d9fafa9c307f910..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/timeline/timeline_data.py
+++ /dev/null
@@ -1,16 +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.
-
-class TimelineData(object):
- """ Subclasses of TimelineData carry timeline data from a source
- (e.g. tracing, profiler, etc.) to the corresponding timeline importer.
- """
- def Serialize(self, f):
- """Serializes the event data to a file-like object"""
- pass
-
- def EventData(self):
- """Return the event data in a format that the corresponding timeline
- importer understands"""
- pass

Powered by Google App Engine
This is Rietveld 408576698