| 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 cc3396878cb33c7575f6c83a8657ba5a6f26b36e..c01255201b6345c3938e33bf3dd458a4d229241e 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js
|
| @@ -148,14 +148,14 @@ UI.StaticViewportControl.Provider.prototype = {
|
| * @param {number} index
|
| * @return {number}
|
| */
|
| - fastItemHeight: function(index) {
|
| + fastItemHeight(index) {
|
| return 0;
|
| },
|
|
|
| /**
|
| * @return {number}
|
| */
|
| - itemCount: function() {
|
| + itemCount() {
|
| return 0;
|
| },
|
|
|
| @@ -163,7 +163,7 @@ UI.StaticViewportControl.Provider.prototype = {
|
| * @param {number} index
|
| * @return {?Element}
|
| */
|
| - itemElement: function(index) {
|
| + itemElement(index) {
|
| return null;
|
| }
|
| };
|
|
|