| Index: third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
|
| index 0ad215db5d3d430599e4778fbab8c0df75ae3736..fd0bf750494b40baa2a0795c095c549683692fce 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
|
| @@ -45,7 +45,7 @@ WebInspector.ProfileDataGridNode = function(profileNode, owningTree, hasChildren
|
| this.self = profileNode.self;
|
| this.total = profileNode.total;
|
| this.functionName = WebInspector.beautifyFunctionName(profileNode.functionName);
|
| - this._deoptReason = profileNode.deoptReason && profileNode.deoptReason !== "no reason" ? profileNode.deoptReason : "";
|
| + this._deoptReason = profileNode.deoptReason || "";
|
| this.url = profileNode.url;
|
| }
|
|
|
|
|