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

Unified Diff: third_party/WebKit/Source/devtools/front_end/audits/AuditCategories.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 months 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/audits/AuditCategories.js
diff --git a/third_party/WebKit/Source/devtools/front_end/audits/AuditCategories.js b/third_party/WebKit/Source/devtools/front_end/audits/AuditCategories.js
index 0d77b931266199cc412fc27079cdabbe96765a8c..1b890ec4f1607792c8607dc7cf24792e81f37cb3 100644
--- a/third_party/WebKit/Source/devtools/front_end/audits/AuditCategories.js
+++ b/third_party/WebKit/Source/devtools/front_end/audits/AuditCategories.js
@@ -34,7 +34,7 @@
*/
WebInspector.AuditCategories.PagePerformance = function() {
WebInspector.AuditCategoryImpl.call(this, WebInspector.AuditCategories.PagePerformance.AuditCategoryName);
-}
+};
WebInspector.AuditCategories.PagePerformance.AuditCategoryName = WebInspector.UIString("Web Page Performance");
@@ -47,7 +47,7 @@ WebInspector.AuditCategories.PagePerformance.prototype = {
},
__proto__: WebInspector.AuditCategoryImpl.prototype
-}
+};
/**
* @constructor
@@ -55,7 +55,7 @@ WebInspector.AuditCategories.PagePerformance.prototype = {
*/
WebInspector.AuditCategories.NetworkUtilization = function() {
WebInspector.AuditCategoryImpl.call(this, WebInspector.AuditCategories.NetworkUtilization.AuditCategoryName);
-}
+};
WebInspector.AuditCategories.NetworkUtilization.AuditCategoryName = WebInspector.UIString("Network Utilization");
@@ -74,4 +74,4 @@ WebInspector.AuditCategories.NetworkUtilization.prototype = {
},
__proto__: WebInspector.AuditCategoryImpl.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698