| 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 cf95e4c76472014e222830a7095e5891ec0e5212..3fc4fa61b508002182238794728412c424471444 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| @@ -1527,7 +1527,7 @@ Timeline.TimelineUIUtils = class {
|
| contentHelper.appendTextRow(Common.UIString('FPS'), Math.floor(1000 / durationInMillis));
|
| contentHelper.appendTextRow(Common.UIString('CPU time'), Number.millisToString(frame.cpuTime, true));
|
|
|
| - if (Runtime.experiments.isEnabled('layersPanel') && frame.layerTree) {
|
| + if (frame.layerTree) {
|
| contentHelper.appendElementRow(
|
| Common.UIString('Layer tree'),
|
| Components.Linkifier.linkifyUsingRevealer(frame.layerTree, Common.UIString('show')));
|
|
|