Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / tracing / importer / importer.html
index 046da2f..2e14e62 100644 (file)
@@ -4,20 +4,28 @@ Copyright (c) 2013 The Chromium Authors. All rights reserved.
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
-<link rel="import" href="/tvcm.html">
+<link rel="import" href="/base.html">
 <script>
 'use strict';
 
 /**
  * @fileoverview Base class for trace data importers.
  */
-tvcm.exportTo('tracing.importer', function() {
+tv.exportTo('tracing.importer', function() {
   function Importer() { }
 
   Importer.prototype = {
     __proto__: Object.prototype,
 
     /**
+     * Called by the Model to check whether the importer type stores the actual
+     * trace data or just holds it as container for further extraction.
+     */
+    isTraceDataContainer: function() {
+      return false;
+    },
+
+    /**
      * Called by the Model to extract one or more subtraces from the event data.
      */
     extractSubtraces: function() {