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

Unified Diff: tools/telemetry/telemetry/core/timeline/event_container.py

Issue 19790005: Reland [telemetry] Timeline model cleanups (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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/core/timeline/event_container.py
diff --git a/tools/telemetry/telemetry/core/timeline/event_container.py b/tools/telemetry/telemetry/core/timeline/event_container.py
new file mode 100644
index 0000000000000000000000000000000000000000..bdde1845221972ea265092ba7fbc661e1b9f168f
--- /dev/null
+++ b/tools/telemetry/telemetry/core/timeline/event_container.py
@@ -0,0 +1,15 @@
+# Copyright (c) 2013 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 TimelineEventContainer(object):
+ """Represents a container for events."""
+ def __init__(self, name, parent):
+ self.parent = parent
+ self.name = name
+
+ def IterChildContainers(self):
+ raise NotImplementedError()
+
+ def IterEventsInThisContainer(self):
+ raise NotImplementedError()
« no previous file with comments | « tools/telemetry/telemetry/core/timeline/event.py ('k') | tools/telemetry/telemetry/core/timeline/event_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698