| Index: third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.js
|
| index 5c067b2d7615c6b144fcdf8bbaa1ca0aa65f08e4..872932389665acbb256a588e623d05e920c32cc0 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.js
|
| @@ -30,7 +30,8 @@ WebInspector.NetworkTimelineColumn = function(rowHeight, headerHeight, calculato
|
| this._headerHeight = headerHeight;
|
| this._calculator = calculator;
|
|
|
| - this._popoverHelper = new WebInspector.PopoverHelper(this.element, this._getPopoverAnchor.bind(this), this._showPopover.bind(this));
|
| + this._popoverHelper = new WebInspector.PopoverHelper(this.element);
|
| + this._popoverHelper.initializeCallbacks(this._getPopoverAnchor.bind(this), this._showPopover.bind(this));
|
| this._popoverHelper.setTimeout(300, 300);
|
|
|
| this._vScrollElement = this.contentElement.createChild("div", "network-timeline-v-scroll");
|
|
|