| Index: third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js b/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| index 5af70abc6b8e0f2d00be0169d722ff043cb469cb..103678a29c3a852419184a4c3417e4ce0efcb899 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/BottomUpProfileDataGrid.js
|
| @@ -37,7 +37,7 @@
|
| */
|
| WebInspector.BottomUpProfileDataGridNode = function(profileNode, owningTree)
|
| {
|
| - WebInspector.ProfileDataGridNode.call(this, profileNode, owningTree, this._willHaveChildren(profileNode));
|
| + WebInspector.ProfileDataGridNode.call(this, profileNode, owningTree, !!profileNode.parent && !!profileNode.parent.parent);
|
| this._remainingNodeInfos = [];
|
| };
|
|
|
|
|