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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js

Issue 2604883002: DevTools: namespace globals (Closed)
Patch Set: address CL feedback Created 4 years 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/resources/AppManifestView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js b/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
index c99bed20ca50929251404344ea51f66a0b746397..4e0749e0363a5a263db8bfc6db3dd16d910ffb91 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
@@ -86,7 +86,7 @@ Resources.AppManifestView = class extends UI.VBox {
this._errorsSection.element.classList.toggle('hidden', !errors.length);
for (var error of errors) {
this._errorsSection.appendRow().appendChild(
- createLabel(error.message, error.critical ? 'smallicon-error' : 'smallicon-warning'));
+ UI.createLabel(error.message, error.critical ? 'smallicon-error' : 'smallicon-warning'));
}
if (!data)

Powered by Google App Engine
This is Rietveld 408576698