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

Unified Diff: third_party/WebKit/Source/devtools/front_end/audits/AuditExtensionCategory.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/AuditExtensionCategory.js
diff --git a/third_party/WebKit/Source/devtools/front_end/audits/AuditExtensionCategory.js b/third_party/WebKit/Source/devtools/front_end/audits/AuditExtensionCategory.js
index 30ce537fd66657ced6e2ced824a7d11a89bf9a2d..e7ba2bdbc0e92eefb4a0d20e81697166610cce63 100644
--- a/third_party/WebKit/Source/devtools/front_end/audits/AuditExtensionCategory.js
+++ b/third_party/WebKit/Source/devtools/front_end/audits/AuditExtensionCategory.js
@@ -42,7 +42,7 @@ WebInspector.AuditExtensionCategory = function(extensionOrigin, id, displayName,
this._id = id;
this._displayName = displayName;
this._ruleCount = ruleCount;
-}
+};
WebInspector.AuditExtensionCategory.prototype = {
/**
@@ -73,7 +73,7 @@ WebInspector.AuditExtensionCategory.prototype = {
var results = new WebInspector.AuditExtensionCategoryResults(this, target, ruleResultCallback, progress);
WebInspector.extensionServer.startAuditRun(this.id, results);
}
-}
+};
/**
* @constructor
@@ -94,7 +94,7 @@ WebInspector.AuditExtensionCategoryResults = function(category, target, ruleResu
this._actualResults = 0;
this._id = category.id + "-" + ++WebInspector.AuditExtensionCategoryResults._lastId;
-}
+};
WebInspector.AuditExtensionCategoryResults.prototype = {
/**
@@ -187,7 +187,7 @@ WebInspector.AuditExtensionCategoryResults.prototype = {
var evaluateCallback = /** @type {function(?string, ?WebInspector.RemoteObject, boolean=)} */ (onEvaluate.bind(this));
WebInspector.extensionServer.evaluate(expression, false, false, evaluateOptions, this._category._extensionOrigin, evaluateCallback);
}
-}
+};
WebInspector.AuditExtensionFormatters = {
/**
@@ -239,6 +239,6 @@ WebInspector.AuditExtensionFormatters = {
}
return parentElement;
}
-}
+};
WebInspector.AuditExtensionCategoryResults._lastId = 0;

Powered by Google App Engine
This is Rietveld 408576698