| Index: third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js b/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js
|
| index 13a339f7e35de6704ec5d475dd4d780437d1c279..515559ebc850f12c7cc41ed55a1438e11e2d9b8c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js
|
| @@ -19,7 +19,7 @@ WebInspector.StaticViewportControl = function(provider)
|
| this.element.addEventListener("scroll", this._update.bind(this), false);
|
| this._itemCount = 0;
|
| this._indexSymbol = Symbol("WebInspector.StaticViewportControl._indexSymbol");
|
| -}
|
| +};
|
|
|
| WebInspector.StaticViewportControl.prototype = {
|
| refresh: function()
|
| @@ -138,14 +138,14 @@ WebInspector.StaticViewportControl.prototype = {
|
| {
|
| return this.element.offsetHeight;
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @interface
|
| */
|
| WebInspector.StaticViewportControl.Provider = function()
|
| {
|
| -}
|
| +};
|
|
|
| WebInspector.StaticViewportControl.Provider.prototype = {
|
| /**
|
| @@ -164,4 +164,4 @@ WebInspector.StaticViewportControl.Provider.prototype = {
|
| * @return {?Element}
|
| */
|
| itemElement: function(index) { return null; }
|
| -}
|
| +};
|
|
|