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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/Progress.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/common/Progress.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/Progress.js b/third_party/WebKit/Source/devtools/front_end/common/Progress.js
index 94aa60b0770a6c9ea111488aad070221680cf36c..3698d442dee1e19627a1615d006e8d89228124e1 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/Progress.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/Progress.js
@@ -33,7 +33,7 @@
*/
WebInspector.Progress = function()
{
-}
+};
WebInspector.Progress.prototype = {
/**
@@ -63,7 +63,7 @@ WebInspector.Progress.prototype = {
* @return {boolean}
*/
isCanceled: function() { return false; },
-}
+};
/**
* @constructor
@@ -76,7 +76,7 @@ WebInspector.CompositeProgress = function(parent)
this._childrenDone = 0;
this._parent.setTotalWork(1);
this._parent.setWorked(0);
-}
+};
WebInspector.CompositeProgress.prototype = {
_childDone: function()
@@ -110,7 +110,7 @@ WebInspector.CompositeProgress.prototype = {
}
this._parent.setWorked(done / totalWeights);
}
-}
+};
/**
* @constructor
@@ -123,7 +123,7 @@ WebInspector.SubProgress = function(composite, weight)
this._composite = composite;
this._weight = weight || 1;
this._worked = 0;
-}
+};
WebInspector.SubProgress.prototype = {
/**
@@ -184,7 +184,7 @@ WebInspector.SubProgress.prototype = {
{
this.setWorked(this._worked + (worked || 1));
}
-}
+};
/**
* @constructor
@@ -196,7 +196,7 @@ WebInspector.ProgressProxy = function(delegate, doneCallback)
{
this._delegate = delegate;
this._doneCallback = doneCallback;
-}
+};
WebInspector.ProgressProxy.prototype = {
/**
@@ -259,4 +259,4 @@ WebInspector.ProgressProxy.prototype = {
if (this._delegate)
this._delegate.worked(worked);
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698