Commit c90d857a authored by sergeyv@chromium.org's avatar sergeyv@chromium.org

DevTools: show target's selector for old timeline

BUG=
NOTRY=true

Review URL: https://codereview.chromium.org/469673004

git-svn-id: svn://svn.chromium.org/blink/trunk@180196 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 7abce160
......@@ -393,6 +393,11 @@ WebInspector.TimelinePanel.prototype = {
this._filtersContainer.appendChild(this._filterBar.filtersElement());
this._filterBar.addEventListener(WebInspector.FilterBar.Events.FiltersToggled, this._onFiltersToggled, this);
this._filterBar.setName("timelinePanel");
if (!WebInspector.experimentsSettings.timelineOnTraceEvents.isEnabled()) {
var targetsComboBox = new WebInspector.StatusBarComboBox(null);
panelStatusBarElement.appendChild(targetsComboBox.element);
new WebInspector.TargetsComboBoxController(targetsComboBox.selectElement(), targetsComboBox.element);
}
},
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment