| Index: third_party/WebKit/Source/devtools/front_end/animation/AnimationTimeline.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/animation/AnimationTimeline.js b/third_party/WebKit/Source/devtools/front_end/animation/AnimationTimeline.js
|
| index 94f37d29963960beba28e4894528f1a0772ed8f2..8b2cf88a7bca826cce5332067935f6415fd02c98 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/animation/AnimationTimeline.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/animation/AnimationTimeline.js
|
| @@ -145,7 +145,8 @@ WebInspector.AnimationTimeline.prototype = {
|
| this._updatePlaybackControls();
|
|
|
| this._previewContainer = this.contentElement.createChild("div", "animation-timeline-buffer");
|
| - this._popoverHelper = new WebInspector.PopoverHelper(this._previewContainer, this._getPopoverAnchor.bind(this), this._showPopover.bind(this), this._onHidePopover.bind(this), true);
|
| + this._popoverHelper = new WebInspector.PopoverHelper(this._previewContainer, true);
|
| + this._popoverHelper.initializeCallbacks(this._getPopoverAnchor.bind(this), this._showPopover.bind(this), this._onHidePopover.bind(this));
|
| this._popoverHelper.setTimeout(0);
|
| var emptyBufferHint = this.contentElement.createChild("div", "animation-timeline-buffer-hint");
|
| emptyBufferHint.textContent = WebInspector.UIString("Listening for animations...");
|
|
|