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, 7 insertions, 6 deletions
diff --git a/Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js b/Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js
index 55d81fec0..f5982ad85 100644
--- a/Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js
+++ b/Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js
@@ -143,11 +143,11 @@ 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);
- },
-
- __proto__: WebInspector.ProfileDataGridNode.prototype
+ }
}
+WebInspector.BottomUpProfileDataGridNode.prototype.__proto__ = WebInspector.ProfileDataGridNode.prototype;
+
/**
* @constructor
* @extends {WebInspector.ProfileDataGridTree}
@@ -266,7 +266,8 @@ WebInspector.BottomUpProfileDataGridTree.prototype = {
this.sort(this.lastComparator, true);
},
- _sharedPopulate: WebInspector.BottomUpProfileDataGridNode.prototype._sharedPopulate,
-
- __proto__: WebInspector.ProfileDataGridTree.prototype
+ _sharedPopulate: WebInspector.BottomUpProfileDataGridNode.prototype._sharedPopulate
}
+
+WebInspector.BottomUpProfileDataGridTree.prototype.__proto__ = WebInspector.ProfileDataGridTree.prototype;
+