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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkTimeCalculator.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/NetworkTimeCalculator.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkTimeCalculator.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkTimeCalculator.js
index f24a4c6857b47bc4c2d0b1e806e5ffc0f0a23581..7717bc748da5f5ee34cb7f937d31c356be35a335 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkTimeCalculator.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkTimeCalculator.js
@@ -37,7 +37,7 @@ WebInspector.NetworkTimeBoundary = function(minimum, maximum)
{
this.minimum = minimum;
this.maximum = maximum;
-}
+};
WebInspector.NetworkTimeBoundary.prototype = {
/**
@@ -48,7 +48,7 @@ WebInspector.NetworkTimeBoundary.prototype = {
{
return (this.minimum === other.minimum) && (this.maximum === other.maximum);
}
-}
+};
/**
* @constructor
@@ -61,12 +61,12 @@ WebInspector.NetworkTimeCalculator = function(startAtZero)
this._boundryChangedEventThrottler = new WebInspector.Throttler(0);
/** @type {?WebInspector.NetworkTimeBoundary} */
this._window = null;
-}
+};
/** @enum {symbol} */
WebInspector.NetworkTimeCalculator.Events = {
BoundariesChanged: Symbol("BoundariesChanged")
-}
+};
/** @type {!WebInspector.UIStringFormat} */
WebInspector.NetworkTimeCalculator._latencyDownloadTotalFormat = new WebInspector.UIStringFormat("%s latency, %s download (%s total)");
@@ -367,7 +367,7 @@ WebInspector.NetworkTimeCalculator.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @constructor
@@ -376,7 +376,7 @@ WebInspector.NetworkTimeCalculator.prototype = {
WebInspector.NetworkTransferTimeCalculator = function()
{
WebInspector.NetworkTimeCalculator.call(this, false);
-}
+};
WebInspector.NetworkTransferTimeCalculator.prototype = {
/**
@@ -411,7 +411,7 @@ WebInspector.NetworkTransferTimeCalculator.prototype = {
},
__proto__: WebInspector.NetworkTimeCalculator.prototype
-}
+};
/**
* @constructor
@@ -420,7 +420,7 @@ WebInspector.NetworkTransferTimeCalculator.prototype = {
WebInspector.NetworkTransferDurationCalculator = function()
{
WebInspector.NetworkTimeCalculator.call(this, true);
-}
+};
WebInspector.NetworkTransferDurationCalculator.prototype = {
/**
@@ -445,4 +445,4 @@ WebInspector.NetworkTransferDurationCalculator.prototype = {
},
__proto__: WebInspector.NetworkTimeCalculator.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698