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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/Throttler.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/Throttler.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/Throttler.js b/third_party/WebKit/Source/devtools/front_end/common/Throttler.js
index 5465df5a4429ddc02808f9c973bbf6f86fae987a..a5775d6e160740229c0d302711cb623120b2149a 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/Throttler.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/Throttler.js
@@ -14,7 +14,7 @@ WebInspector.Throttler = function(timeout)
/** @type {?function():(!Promise.<?>)} */
this._process = null;
this._lastCompleteTime = 0;
-}
+};
WebInspector.Throttler.prototype = {
_processCompleted: function()
@@ -103,7 +103,7 @@ WebInspector.Throttler.prototype = {
{
return setTimeout(operation, timeout);
}
-}
+};
/** @typedef {function(!Error=)} */
WebInspector.Throttler.FinishCallback;

Powered by Google App Engine
This is Rietveld 408576698