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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.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/profiler/CPUProfileFlameChart.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
index 68e7f0a6f4a5729ed53f44bf9a115a7a64162b39..9bd345fe4836baa0a0b57f345ab39aac67bd2162 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
@@ -39,7 +39,7 @@ WebInspector.ProfileFlameChartDataProvider = function(target)
WebInspector.FlameChartDataProvider.call(this);
this._target = target;
this._colorGenerator = WebInspector.ProfileFlameChartDataProvider.colorGenerator();
-}
+};
WebInspector.ProfileFlameChartDataProvider.prototype = {
/**
@@ -241,7 +241,7 @@ WebInspector.ProfileFlameChartDataProvider.prototype = {
{
return "#333";
}
-}
+};
/**
@@ -261,7 +261,7 @@ WebInspector.ProfileFlameChartDataProvider.colorGenerator = function()
WebInspector.ProfileFlameChartDataProvider._colorGenerator = colorGenerator;
}
return WebInspector.ProfileFlameChartDataProvider._colorGenerator;
-}
+};
/**
@@ -286,7 +286,7 @@ WebInspector.CPUProfileFlameChart = function(searchableView, dataProvider)
this._overviewPane.addEventListener(WebInspector.OverviewGrid.Events.WindowChanged, this._onWindowChanged, this);
this._dataProvider = dataProvider;
this._searchResults = [];
-}
+};
WebInspector.CPUProfileFlameChart.prototype = {
focus: function()
@@ -415,7 +415,7 @@ WebInspector.CPUProfileFlameChart.prototype = {
WebInspector.CPUProfileFlameChart.OverviewCalculator = function(dataProvider)
{
this._dataProvider = dataProvider;
-}
+};
WebInspector.CPUProfileFlameChart.OverviewCalculator.prototype = {
/**
@@ -494,7 +494,7 @@ WebInspector.CPUProfileFlameChart.OverviewCalculator.prototype = {
{
return this._maximumBoundaries - this._minimumBoundaries;
}
-}
+};
/**
* @constructor
@@ -514,7 +514,7 @@ WebInspector.CPUProfileFlameChart.OverviewPane = function(dataProvider)
this._overviewCalculator = new WebInspector.CPUProfileFlameChart.OverviewCalculator(dataProvider);
this._dataProvider = dataProvider;
this._overviewGrid.addEventListener(WebInspector.OverviewGrid.Events.WindowChanged, this._onWindowChanged, this);
-}
+};
WebInspector.CPUProfileFlameChart.OverviewPane.prototype = {
/**
@@ -661,4 +661,4 @@ WebInspector.CPUProfileFlameChart.OverviewPane.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698