Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / v8 / tools / profile_view.js
index e041909..d1545ac 100644 (file)
@@ -169,24 +169,6 @@ ProfileView.Node = function(
 
 
 /**
- * Returns a share of the function's total time in application's total time.
- */
-ProfileView.Node.prototype.__defineGetter__(
-    'totalPercent',
-    function() { return this.totalTime /
-      (this.head ? this.head.totalTime : this.totalTime) * 100.0; });
-
-
-/**
- * Returns a share of the function's self time in application's total time.
- */
-ProfileView.Node.prototype.__defineGetter__(
-    'selfPercent',
-    function() { return this.selfTime /
-      (this.head ? this.head.totalTime : this.totalTime) * 100.0; });
-
-
-/**
  * Returns a share of the function's total time in its parent's total time.
  */
 ProfileView.Node.prototype.__defineGetter__(