Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / tracing / importer / linux_perf / bus_parser.html
index 1d1afb2..d3058ec 100644 (file)
@@ -15,7 +15,7 @@ found in the LICENSE file.
  * @fileoverview Parses trace_marker events that were inserted in the trace by
  * userland.
  */
-tvcm.exportTo('tracing.importer.linux_perf', function() {
+tv.exportTo('tracing.importer.linux_perf', function() {
   var Parser = tracing.importer.linux_perf.Parser;
 
   /**
@@ -58,7 +58,7 @@ tvcm.exportTo('tracing.importer.linux_perf', function() {
               .getOrCreateCounter(null, 'bus ' + name + ' read');
       if (ctr.numSeries === 0) {
         ctr.addSeries(new tracing.trace_model.CounterSeries('value',
-            tvcm.ui.getStringColorId(ctr.name + '.' + 'value')));
+            tv.ui.getStringColorId(ctr.name + '.' + 'value')));
       }
       ctr.series.forEach(function(series) {
         series.addCounterSample(ts, r_bw);
@@ -68,7 +68,7 @@ tvcm.exportTo('tracing.importer.linux_perf', function() {
               .getOrCreateCounter(null, 'bus ' + name + ' write');
       if (ctr.numSeries === 0) {
         ctr.addSeries(new tracing.trace_model.CounterSeries('value',
-            tvcm.ui.getStringColorId(ctr.name + '.' + 'value')));
+            tv.ui.getStringColorId(ctr.name + '.' + 'value')));
       }
       ctr.series.forEach(function(series) {
         series.addCounterSample(ts, r_bw);