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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.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/ProgressIndicator.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js b/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js
index 73640702da69c0841e2147f91526895c1f1e25aa..b2d36bfa9771be9ffe87d2f8395876bfe151ef74 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/ProgressIndicator.js
@@ -46,7 +46,7 @@ WebInspector.ProgressIndicator = function()
this._isCanceled = false;
this._worked = 0;
-}
+};
WebInspector.ProgressIndicator.prototype = {
/**
@@ -121,4 +121,4 @@ WebInspector.ProgressIndicator.prototype = {
{
this.setWorked(this._worked + (worked || 1));
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698