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

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

Issue 445793004: Fix import order with isort tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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/thread.py
diff --git a/tools/telemetry/telemetry/timeline/thread.py b/tools/telemetry/telemetry/timeline/thread.py
index f6e7d08b53a9df2ec49326fad5da759ec3c303a5..ce8151e0c283e6a575d90d88e8672c0faf02f6fb 100644
--- a/tools/telemetry/telemetry/timeline/thread.py
+++ b/tools/telemetry/telemetry/timeline/thread.py
@@ -1,12 +1,13 @@
# 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.
-import telemetry.timeline.event_container as event_container
-import telemetry.timeline.sample as sample_module
import telemetry.timeline.async_slice as async_slice_module
+import telemetry.timeline.event_container as event_container
import telemetry.timeline.flow_event as flow_event_module
+import telemetry.timeline.sample as sample_module
import telemetry.timeline.slice as slice_module
+
class Thread(event_container.TimelineEventContainer):
''' A Thread stores all the trace events collected for a particular
thread. We organize the synchronous slices on a thread by "subrows," where
« no previous file with comments | « tools/telemetry/telemetry/timeline/slice_unittest.py ('k') | tools/telemetry/telemetry/timeline/thread_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698