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

Side by Side Diff: tools/telemetry/telemetry/timeline/timeline_data.py

Issue 805463002: Implement ubertracing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merged, added surfaceflinger unit test and fixes, addressed slamm's comments Created 5 years, 12 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2014 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 class TimelineData(object):
6 """ Subclasses of TimelineData carry timeline data from a source
7 (e.g. tracing, profiler, etc.) to the corresponding timeline importer.
8 """
9 def Serialize(self, f):
10 """Serializes the event data to a file-like object"""
11 pass
12
13 def EventData(self):
14 """Return the event data in a format that the corresponding timeline
15 importer understands"""
16 pass
OLDNEW
« no previous file with comments | « tools/telemetry/telemetry/timeline/tab_id_importer_unittest.py ('k') | tools/telemetry/telemetry/timeline/trace_data.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698