Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(845)

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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');

Powered by Google App Engine
This is Rietveld 408576698