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

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

Issue 141553009: Make empty traces a non-critical error (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 11 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/model.py
diff --git a/tools/telemetry/telemetry/core/timeline/model.py b/tools/telemetry/telemetry/core/timeline/model.py
index ec8dccb4b786b19c605dbbac5dad2898bb4e9fb1..51dd6c129fc14cedf73ae22dfedc065930954dae 100644
--- a/tools/telemetry/telemetry/core/timeline/model.py
+++ b/tools/telemetry/telemetry/core/timeline/model.py
@@ -15,11 +15,13 @@ from telemetry.core import web_contents
from telemetry.core import browser
# Register importers for data
-from telemetry.core.timeline import inspector_importer
from telemetry.core.timeline import bounds
+from telemetry.core.timeline import empty_trace_importer
+from telemetry.core.timeline import inspector_importer
from telemetry.core.timeline import trace_event_importer
_IMPORTERS = [
+ empty_trace_importer.EmptyTraceImporter,
inspector_importer.InspectorTimelineImporter,
trace_event_importer.TraceEventTimelineImporter
]

Powered by Google App Engine
This is Rietveld 408576698