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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.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/network/NetworkTimelineColumn.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.js
index e3c3b422ee38cdf5892c142b6bbf6f1ff05eea8b..5c067b2d7615c6b144fcdf8bbaa1ca0aa65f08e4 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.js
@@ -69,11 +69,11 @@ WebInspector.NetworkTimelineColumn = function(rowHeight, headerHeight, calculato
this._borderColorsForResourceTypeCache = new Map();
/** @type {!Map<string, !CanvasGradient>} */
this._colorsForResourceTypeCache = new Map();
-}
+};
WebInspector.NetworkTimelineColumn.Events = {
RequestHovered: Symbol("RequestHovered")
-}
+};
WebInspector.NetworkTimelineColumn._colorsForResourceType = {
document: "hsl(215, 100%, 80%)",
@@ -86,7 +86,7 @@ WebInspector.NetworkTimelineColumn._colorsForResourceType = {
websocket: "hsl(0, 0%, 95%)",
xhr: "hsl(53, 100%, 80%)",
other: "hsl(0, 0%, 95%)"
-}
+};
WebInspector.NetworkTimelineColumn.prototype = {
/**
@@ -391,7 +391,7 @@ WebInspector.NetworkTimelineColumn.prototype = {
context.lineWidth = 1;
context.strokeStyle = "rgba(0, 0, 0, .1)";
context.font = this._fontSize + "px sans-serif";
- context.fillStyle = "#444"
+ context.fillStyle = "#444";
gridSliceTime = gridSliceTime;
for (var position = gridSliceTime * pixelsPerTime; position < drawableWidth; position += gridSliceTime * pixelsPerTime) {
// Added .5 because canvas drawing points are between pixels.
@@ -645,4 +645,4 @@ WebInspector.NetworkTimelineColumn.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698