Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / tracing / tracks / process_track.html
index 3211c94..9ad2a9b 100644 (file)
@@ -11,13 +11,13 @@ found in the LICENSE file.
 <script>
 'use strict';
 
-tvcm.exportTo('tracing.tracks', function() {
+tv.exportTo('tracing.tracks', function() {
   var ProcessTrackBase = tracing.tracks.ProcessTrackBase;
 
   /**
    * @constructor
    */
-  var ProcessTrack = tvcm.ui.define('process-track', ProcessTrackBase);
+  var ProcessTrack = tv.ui.define('process-track', ProcessTrackBase);
 
   ProcessTrack.prototype = {
     __proto__: ProcessTrackBase.prototype,
@@ -106,7 +106,7 @@ tvcm.exportTo('tracing.tracks', function() {
       function onPickHit(instantEvent) {
         selection.push(instantEvent);
       }
-      tvcm.iterateOverIntersectingIntervals(this.processBase.instantEvents,
+      tv.iterateOverIntersectingIntervals(this.processBase.instantEvents,
           function(x) { return x.start; },
           function(x) { return x.duration; },
           loWX, hiWX,