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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/PieChart.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_lazy/PieChart.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/PieChart.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/PieChart.js
index 36e32ea2c65a4d554dd73dfcf697a5e3fd72093b..3dfa0cf77bf3313c890ae65ac06b93fdf57498d4 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/PieChart.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/PieChart.js
@@ -51,7 +51,7 @@ WebInspector.PieChart = function(size, formatter, showTotal)
this._slices = [];
this._lastAngle = -Math.PI / 2;
this._setSize(size);
-}
+};
WebInspector.PieChart.prototype = {
/**
@@ -116,4 +116,4 @@ WebInspector.PieChart.prototype = {
parent.appendChild(child);
return child;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698