summaryrefslogtreecommitdiff
path: root/Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js')
-rw-r--r--Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js13
1 files changed, 6 insertions, 7 deletions
diff --git a/Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js b/Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js
index f5982ad85..55d81fec0 100644
--- a/Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js
+++ b/Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js
@@ -143,10 +143,10 @@ WebInspector.BottomUpProfileDataGridNode.prototype = {
// In bottom up mode, our parents are our children since we display an inverted tree.
// However, we don't want to show the very top parent since it is redundant.
return !!(profileNode.parent && profileNode.parent.parent);
- }
-}
+ },
-WebInspector.BottomUpProfileDataGridNode.prototype.__proto__ = WebInspector.ProfileDataGridNode.prototype;
+ __proto__: WebInspector.ProfileDataGridNode.prototype
+}
/**
* @constructor
@@ -266,8 +266,7 @@ WebInspector.BottomUpProfileDataGridTree.prototype = {
this.sort(this.lastComparator, true);
},
- _sharedPopulate: WebInspector.BottomUpProfileDataGridNode.prototype._sharedPopulate
-}
-
-WebInspector.BottomUpProfileDataGridTree.prototype.__proto__ = WebInspector.ProfileDataGridTree.prototype;
+ _sharedPopulate: WebInspector.BottomUpProfileDataGridNode.prototype._sharedPopulate,
+ __proto__: WebInspector.ProfileDataGridTree.prototype
+}