| Index: third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js b/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
|
| index 26becf5c67082e889e6cbe9e057688452dcd7ca5..6caf67cc0a7070e5a42ed126bc5eccea9a7e97c0 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
|
| @@ -4,13 +4,13 @@
|
| /**
|
| * @unrestricted
|
| */
|
| -WebInspector.ThrottledWidget = class extends WebInspector.VBox {
|
| +UI.ThrottledWidget = class extends UI.VBox {
|
| /**
|
| * @param {boolean=} isWebComponent
|
| */
|
| constructor(isWebComponent) {
|
| super(isWebComponent);
|
| - this._updateThrottler = new WebInspector.Throttler(100);
|
| + this._updateThrottler = new Common.Throttler(100);
|
| this._updateWhenVisible = false;
|
| }
|
|
|
| @@ -29,7 +29,7 @@ WebInspector.ThrottledWidget = class extends WebInspector.VBox {
|
| this._updateThrottler.schedule(innerUpdate.bind(this));
|
|
|
| /**
|
| - * @this {WebInspector.ThrottledWidget}
|
| + * @this {UI.ThrottledWidget}
|
| * @return {!Promise<?>}
|
| */
|
| function innerUpdate() {
|
|
|