Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / tracing / trace_model / async_slice.html
index c3d33d5..1dce5e5 100644 (file)
@@ -13,7 +13,7 @@ found in the LICENSE file.
 /**
  * @fileoverview Provides the AsyncSlice class.
  */
-tvcm.exportTo('tracing.trace_model', function() {
+tv.exportTo('tracing.trace_model', function() {
   /**
    * A AsyncSlice represents an interval of time during which an
    * asynchronous operation is in progress. An AsyncSlice consumes no CPU time
@@ -50,9 +50,15 @@ tvcm.exportTo('tracing.trace_model', function() {
 
     endThread: undefined,
 
-    subSlices: undefined
+    subSlices: undefined,
+
+    get viewSubGroupTitle() {
+      return this.title;
+    }
   };
 
+  tracing.trace_model.Event.decorateSubtype(AsyncSlice);
+
   return {
     AsyncSlice: AsyncSlice
   };