| Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| index bb5a60dca8f3e513e47ad38979e3c4f51b1e33b6..c98f28029ef7c9e68a45c3c282bb7bd4558f6621 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| @@ -1738,6 +1738,12 @@ Timeline.TimelineUIUtils = class {
|
| 'Idle callback execution extended beyond deadline by ' +
|
| Number.millisToString(event.duration - eventData['allottedMilliseconds'], true));
|
| break;
|
| + case warnings.LongHandler:
|
| + span.textContent = Common.UIString('Handler took %s', Number.millisToString(event.duration, true));
|
| + break;
|
| + case warnings.LongRecurringHandler:
|
| + span.textContent = Common.UIString('Recurring handler took %s', Number.millisToString(event.duration, true));
|
| + break;
|
| case warnings.V8Deopt:
|
| span.appendChild(UI.createExternalLink(
|
| 'https://github.com/GoogleChrome/devtools-docs/issues/53', Common.UIString('Not optimized')));
|
|
|