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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineGrid.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/TimelineGrid.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineGrid.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineGrid.js
index ba9a66b049cf9106d69790f247cfa6f7a5eb1307..d673ddfb0b265ee5f41c9160da8fda8b0495bf54 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineGrid.js
@@ -43,7 +43,7 @@ WebInspector.TimelineGrid = function()
this._eventDividersElement = this._gridHeaderElement.createChild("div", "resources-event-dividers");
this._dividersLabelBarElement = this._gridHeaderElement.createChild("div", "resources-dividers-label-bar");
this.element.appendChild(this._gridHeaderElement);
-}
+};
/**
* @param {!WebInspector.TimelineGrid.Calculator} calculator
@@ -92,7 +92,7 @@ WebInspector.TimelineGrid.calculateDividerOffsets = function(calculator, freeZon
}
return {offsets: offsets, precision: Math.max(0, -Math.floor(Math.log(gridSliceTime * 1.01) / Math.LN10))};
-}
+};
/**
* @param {!HTMLCanvasElement} canvas
@@ -134,7 +134,7 @@ WebInspector.TimelineGrid.drawCanvasGrid = function(canvas, calculator)
}
context.stroke();
context.restore();
-}
+};
WebInspector.TimelineGrid.prototype = {
get dividersElement()
@@ -263,12 +263,12 @@ WebInspector.TimelineGrid.prototype = {
this._dividersLabelBarElement.style.top = scrollTop + "px";
this._eventDividersElement.style.top = scrollTop + "px";
}
-}
+};
/**
* @interface
*/
-WebInspector.TimelineGrid.Calculator = function() { }
+WebInspector.TimelineGrid.Calculator = function() { };
WebInspector.TimelineGrid.Calculator.prototype = {
/**
@@ -300,4 +300,4 @@ WebInspector.TimelineGrid.Calculator.prototype = {
/** @return {number} */
boundarySpan: function() { }
-}
+};

Powered by Google App Engine
This is Rietveld 408576698