| Index: third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js b/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js
|
| index e3fcce8eea9c3dd98e79d267a97a6d875279cc3c..2c8bb284f1260763b3d430ef6134b7a6db4868d9 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js
|
| @@ -28,13 +28,13 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
| /**
|
| - * @implements {WebInspector.Progress}
|
| + * @implements {Common.Progress}
|
| * @unrestricted
|
| */
|
| -WebInspector.ProgressIndicator = class {
|
| +UI.ProgressIndicator = class {
|
| constructor() {
|
| this.element = createElementWithClass('div', 'progress-indicator');
|
| - this._shadowRoot = WebInspector.createShadowRootWithCoreStyles(this.element, 'ui/progressIndicator.css');
|
| + this._shadowRoot = UI.createShadowRootWithCoreStyles(this.element, 'ui/progressIndicator.css');
|
| this._contentElement = this._shadowRoot.createChild('div', 'progress-indicator-shadow-container');
|
|
|
| this._labelElement = this._contentElement.createChild('div', 'title');
|
|
|