| 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 7e5a36e4dc978e42524ab223366404cd8ed71ca6..cc3396878cb33c7575f6c83a8657ba5a6f26b36e 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/StaticViewportControl.js
|
| @@ -4,9 +4,9 @@
|
| /**
|
| * @unrestricted
|
| */
|
| -WebInspector.StaticViewportControl = class {
|
| +UI.StaticViewportControl = class {
|
| /**
|
| - * @param {!WebInspector.StaticViewportControl.Provider} provider
|
| + * @param {!UI.StaticViewportControl.Provider} provider
|
| */
|
| constructor(provider) {
|
| this.element = createElement('div');
|
| @@ -19,7 +19,7 @@ WebInspector.StaticViewportControl = class {
|
| this._provider = provider;
|
| this.element.addEventListener('scroll', this._update.bind(this), false);
|
| this._itemCount = 0;
|
| - this._indexSymbol = Symbol('WebInspector.StaticViewportControl._indexSymbol');
|
| + this._indexSymbol = Symbol('UI.StaticViewportControl._indexSymbol');
|
| }
|
|
|
| refresh() {
|
| @@ -141,9 +141,9 @@ WebInspector.StaticViewportControl = class {
|
| /**
|
| * @interface
|
| */
|
| -WebInspector.StaticViewportControl.Provider = function() {};
|
| +UI.StaticViewportControl.Provider = function() {};
|
|
|
| -WebInspector.StaticViewportControl.Provider.prototype = {
|
| +UI.StaticViewportControl.Provider.prototype = {
|
| /**
|
| * @param {number} index
|
| * @return {number}
|
|
|