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

Unified Diff: third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.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/audits2/Audits2Panel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js b/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js
index d4026c0c1086d2fcd1fa41c1183847cc602f5ed2..b8ec6555b768a359e735433614f68494bc4a0418 100644
--- a/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js
+++ b/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js
@@ -12,7 +12,7 @@ WebInspector.Audits2Panel = function()
this.contentElement.classList.add("vbox");
this.contentElement.appendChild(createTextButton(WebInspector.UIString("Start"), this._start.bind(this)));
this.contentElement.appendChild(createTextButton(WebInspector.UIString("Stop"), this._stop.bind(this)));
-}
+};
WebInspector.Audits2Panel.prototype = {
_start: function()
@@ -58,4 +58,4 @@ WebInspector.Audits2Panel.prototype = {
},
__proto__: WebInspector.Panel.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698