Commit bf9d6995 authored by loislo@chromium.org's avatar loislo@chromium.org

TimelinePanel: REGRESSION search doesn't work if focus not in records view.

BUG=
R=pfeldman@chromium.org

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

git-svn-id: svn://svn.chromium.org/blink/trunk@171481 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 84126a36
...@@ -156,6 +156,14 @@ WebInspector.TimelinePanel.headerHeight = 20; ...@@ -156,6 +156,14 @@ WebInspector.TimelinePanel.headerHeight = 20;
WebInspector.TimelinePanel.durationFilterPresetsMs = [0, 1, 15]; WebInspector.TimelinePanel.durationFilterPresetsMs = [0, 1, 15];
WebInspector.TimelinePanel.prototype = { WebInspector.TimelinePanel.prototype = {
/**
* @return {?WebInspector.SearchableView}
*/
searchableView: function()
{
return this._searchableView;
},
wasShown: function() wasShown: function()
{ {
if (!WebInspector.TimelinePanel._categoryStylesInitialized) { if (!WebInspector.TimelinePanel._categoryStylesInitialized) {
......
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