| 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 5f49e8cc4f27d6ad6a227d56b320be7a5c1c0e24..b8f3a13d429fc5221e77c0ca6584a58c3749c0ca 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
|
| @@ -5,10 +5,11 @@
|
| /**
|
| * @constructor
|
| * @extends {WebInspector.Widget}
|
| + * @param {boolean=} isWebComponent
|
| */
|
| -WebInspector.ThrottledWidget = function()
|
| +WebInspector.ThrottledWidget = function(isWebComponent)
|
| {
|
| - WebInspector.Widget.call(this);
|
| + WebInspector.Widget.call(this, isWebComponent);
|
| this._updateThrottler = new WebInspector.Throttler(100);
|
| this._updateWhenVisible = false;
|
| }
|
|
|