| Index: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| index 5650b471331862f606ebf42175b1f8cfae3a8e81..ac3a4469e0a629ada8efb7f70fb16e9710af7a23 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| @@ -491,7 +491,7 @@ WebInspector.CPUFlameChartDataProvider.prototype = {
|
| linkifier.dispose();
|
| pushEntryInfoRow(WebInspector.UIString("Aggregated self time"), Number.secondsToString(node.self / 1000, true));
|
| pushEntryInfoRow(WebInspector.UIString("Aggregated total time"), Number.secondsToString(node.total / 1000, true));
|
| - if (node.deoptReason && node.deoptReason !== "no reason")
|
| + if (node.deoptReason)
|
| pushEntryInfoRow(WebInspector.UIString("Not optimized"), node.deoptReason);
|
|
|
| return entryInfo;
|
|
|