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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/ReportView.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/ui/ReportView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ReportView.js b/third_party/WebKit/Source/devtools/front_end/ui/ReportView.js
index 8195dd5694241e220499363d6ad23eaa631d87af..167499b6a2c6801490db112fd097dc6644701b3a 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/ReportView.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/ReportView.js
@@ -17,7 +17,7 @@ WebInspector.ReportView = function(title)
this._headerElement.createChild("div", "report-title").textContent = title;
this._sectionList = contentBox.createChild("div", "vbox");
-}
+};
WebInspector.ReportView.prototype = {
/**
@@ -76,7 +76,7 @@ WebInspector.ReportView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -96,7 +96,7 @@ WebInspector.ReportView.Section = function(title, className)
this._fieldList = this.element.createChild("div", "vbox");
/** @type {!Map.<string, !Element>} */
this._fieldMap = new Map();
-}
+};
WebInspector.ReportView.Section.prototype = {
/**
@@ -189,4 +189,4 @@ WebInspector.ReportView.Section.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698