Index: tools/android/loading/queuing_lens.py |
diff --git a/tools/android/loading/queuing_lens.py b/tools/android/loading/queuing_lens.py |
index 268407a31d8f7fc7b562bb2f037a0fec4084dd52..97f87dc90ec0df9572f1f0d2121a7730a3235f06 100644 |
--- a/tools/android/loading/queuing_lens.py |
+++ b/tools/android/loading/queuing_lens.py |
@@ -12,12 +12,12 @@ import collections |
import itertools |
import logging |
-import tracing |
+import clovis_constants |
class QueuingLens(object): |
"""Attaches queuing related trace events to request objects.""" |
- QUEUING_CATEGORY = tracing.QUEUING_CATEGORY |
+ QUEUING_CATEGORY = clovis_constants.QUEUING_CATEGORY |
blundell
2016/06/06 16:06:38
nit: maybe this should still be defined in tracing
gabadie
2016/06/06 16:17:30
Curious: why would only this category be defined i
pasko
2016/06/06 17:30:52
I am concerned with clovis_constants.py and tracin
gabadie
2016/06/06 17:37:10
To me it just looks fine as is.
|
ASYNC_NAME = 'ScheduledResourceRequest' |
READY_NAME = 'ScheduledResourceRequest.Ready' |
SET_PRIORITY_NAME = 'ScheduledResourceRequest.SetPriority' |