| Index: third_party/WebKit/Source/devtools/front_end/profiler/TopDownProfileDataGrid.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/TopDownProfileDataGrid.js b/third_party/WebKit/Source/devtools/front_end/profiler/TopDownProfileDataGrid.js
|
| index 1658dec7f251ff4f888b13bec888f5312fbc165f..d14ebdefe86abf52a5632aa0594af4add83ac725 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/TopDownProfileDataGrid.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/TopDownProfileDataGrid.js
|
| @@ -66,7 +66,7 @@ WebInspector.TopDownProfileDataGridNode._sharedPopulate = function(container)
|
|
|
| /**
|
| * @param {!WebInspector.TopDownProfileDataGridNode|!WebInspector.TopDownProfileDataGridTree} container
|
| - * @param {number|string} aCallUID
|
| + * @param {string} aCallUID
|
| */
|
| WebInspector.TopDownProfileDataGridNode._excludeRecursively = function(container, aCallUID)
|
| {
|
| @@ -81,7 +81,7 @@ WebInspector.TopDownProfileDataGridNode._excludeRecursively = function(container
|
| while (index--)
|
| WebInspector.TopDownProfileDataGridNode._excludeRecursively(children[index], aCallUID);
|
|
|
| - var child = container.childrenByCallUID[aCallUID];
|
| + var child = container.childrenByCallUID.get(aCallUID);
|
|
|
| if (child)
|
| WebInspector.ProfileDataGridNode.merge(container, child, true);
|
|
|