| 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 0c7523060e48beb0e9250b18a3c859d62052d959..56aebe4d7a30feb4899fe3f64b26ebeeb0d78bfe 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/ThrottledWidget.js
|
| @@ -12,7 +12,7 @@ WebInspector.ThrottledWidget = function(isWebComponent)
|
| WebInspector.VBox.call(this, isWebComponent);
|
| this._updateThrottler = new WebInspector.Throttler(100);
|
| this._updateWhenVisible = false;
|
| -}
|
| +};
|
|
|
| WebInspector.ThrottledWidget.prototype = {
|
| /**
|
| @@ -55,4 +55,4 @@ WebInspector.ThrottledWidget.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.VBox.prototype
|
| -}
|
| +};
|
|
|