aboutsummaryrefslogtreecommitdiff
path: root/systrace.py
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2013-03-27 17:00:08 -0700
committerJeff Brown <jeffbrown@google.com>2013-03-27 17:00:18 -0700
commit88448d9ae4dfff1805045790ef5f32495d62abcc (patch)
tree73ba80df1cf3202ff2bd60bd324c73dc124bd6f1 /systrace.py
parent9623f136353986b8248e485e7af87661e0b13d54 (diff)
downloadchromium-trace-88448d9ae4dfff1805045790ef5f32495d62abcc.tar.gz
systrace: update to trace-viewer rev 237
Change-Id: I3ebd2235f528d2eae22256027ca547d85d9a0904
Diffstat (limited to 'systrace.py')
-rwxr-xr-xsystrace.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/systrace.py b/systrace.py
index 131c5899..da98284a 100755
--- a/systrace.py
+++ b/systrace.py
@@ -208,9 +208,9 @@ document.addEventListener('DOMContentLoaded', function() {
if (!linuxPerfData)
return;
- var m = new tracing.TimelineModel(linuxPerfData);
+ var m = new tracing.Model(linuxPerfData);
var timelineViewEl = document.querySelector('.view');
- base.ui.decorate(timelineViewEl, tracing.TimelineView);
+ tracing.ui.decorate(timelineViewEl, tracing.TimelineView);
timelineViewEl.model = m;
timelineViewEl.tabIndex = 1;
timelineViewEl.timeline.focusElement = timelineViewEl;