Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / tracing / importer / gzip_importer.html
index 617ba2b..c975255 100644 (file)
@@ -16,7 +16,7 @@ found in the LICENSE file.
  * @fileoverview GzipImporter inflates gzip compressed data and passes it along
  * to an actual importer.
  */
-tvcm.exportTo('tracing.importer', function() {
+tv.exportTo('tracing.importer', function() {
   var Importer = tracing.importer.Importer;
 
   var GZIP_MEMBER_HEADER_ID_SIZE = 3;
@@ -122,6 +122,14 @@ tvcm.exportTo('tracing.importer', function() {
     __proto__: Importer.prototype,
 
     /**
+     * Called by the Model to check whether the importer just encapsulates
+     * the actual trace data which needs to be imported by another importer.
+     */
+    isTraceDataContainer: function() {
+      return true;
+    },
+
+    /**
      * Called by the Model to extract subtraces from the event data. The
      * subtraces are passed on to other importers that can recognize them.
      */