Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / cc / raster_task_sub_view_for_tasks_from_same_lthi.html
index ef69048..6dd6b92 100644 (file)
@@ -9,7 +9,7 @@ found in the LICENSE file.
 <link rel="import" href="/tracing/analysis/analysis_results.html">
 <link rel="import" href="/tracing/analysis/analysis_sub_view.html">
 <link rel="import" href="/tracing/analysis/util.html">
-<link rel="import" href="/tvcm/ui/sortable_table.html">
+<link rel="import" href="/base/ui/sortable_table.html">
 
 <polymer-element name="raster-task-analysis-for-tasks-from-same-lthi"
     constructor="RasterTaskSubViewForTasksFromSameLTHI">
@@ -104,7 +104,7 @@ found in the LICENSE file.
       });
 
       // Initial sort.
-      var costs = tvcm.dictionaryValues(costsByLayerId);
+      var costs = tv.dictionaryValues(costsByLayerId);
       costs.sort(function(x,y) {
         if (hadCpuDurations)
           return y.cpuDuration - x.cpuDuration;
@@ -151,7 +151,7 @@ found in the LICENSE file.
       // Footer.
       var frow = results.appendFootRow(table);
       results.appendTableCell(table, frow, 'Totals')
-      results.appendTableCell(table, frow,  tvcm.dictionaryLength(tilesThatWeHaveSeen));
+      results.appendTableCell(table, frow,  tv.dictionaryLength(tilesThatWeHaveSeen));
       results.appendTableCell(table, frow,  totalNumAnalyzeTasks);
       results.appendTableCell(table, frow,  totalNumRasterizeTasks);
       results.appendTableCell(
@@ -161,7 +161,7 @@ found in the LICENSE file.
             table, frow, tracing.analysis.tsRound(totalCpuDuration) + 'ms');
       }
 
-      tvcm.ui.SortableTable.decorate(table);
+      tv.ui.SortableTable.decorate(table);
     }
   });
   </script>