Index: tools/profile_view.js |
diff --git a/tools/profile_view.js b/tools/profile_view.js |
index e041909b01a1c90f3eaa9be8dfc970b257fbd57e..d1545acd99699adc8672afad809a969105ab0f74 100644 |
--- a/tools/profile_view.js |
+++ b/tools/profile_view.js |
@@ -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__( |