| Index: Source/devtools/front_end/profiler/CPUProfileDataGrid.js
|
| diff --git a/Source/devtools/front_end/profiler/CPUProfileDataGrid.js b/Source/devtools/front_end/profiler/CPUProfileDataGrid.js
|
| index 7b36511046078393892f4bb3eaa5ffcff2eb3c10..42e9f28a9ab1a88bcccae2c6dd8ccd0c69e443d8 100644
|
| --- a/Source/devtools/front_end/profiler/CPUProfileDataGrid.js
|
| +++ b/Source/devtools/front_end/profiler/CPUProfileDataGrid.js
|
| @@ -44,7 +44,7 @@ WebInspector.ProfileDataGridNode = function(profileNode, owningTree, hasChildren
|
| this.callUID = profileNode.callUID;
|
| this.selfTime = profileNode.selfTime;
|
| this.totalTime = profileNode.totalTime;
|
| - this.functionName = profileNode.functionName;
|
| + this.functionName = WebInspector.CPUProfileDataModel.beautifyFunctionName(profileNode.functionName);
|
| this._deoptReason = (!profileNode.deoptReason || profileNode.deoptReason === "no reason") ? "" : profileNode.deoptReason;
|
| this.url = profileNode.url;
|
| }
|
|
|