| Index: third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js b/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
|
| index 98960a8fed99d165a76a8a9c40132cd84aed2216..1b20de2e0162c3f1caf51a5295798dbd816e4dad 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
|
| @@ -46,7 +46,7 @@ UI.SuggestBoxDelegate.prototype = {
|
| };
|
|
|
| /**
|
| - * @implements {UI.StaticViewportControl.Provider}
|
| + * @implements {UI.ViewportControl.Provider}
|
| * @unrestricted
|
| */
|
| UI.SuggestBox = class {
|
| @@ -63,7 +63,7 @@ UI.SuggestBox = class {
|
| this._maxItemsHeight = maxItemsHeight;
|
| this._maybeHideBound = this._maybeHide.bind(this);
|
| this._container = createElementWithClass('div', 'suggest-box-container');
|
| - this._viewport = new UI.StaticViewportControl(this);
|
| + this._viewport = new UI.ViewportControl(this);
|
| this._element = this._viewport.element;
|
| this._element.classList.add('suggest-box');
|
| this._container.appendChild(this._element);
|
|
|