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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/FormatterWorkerPool.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/FormatterWorkerPool.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/FormatterWorkerPool.js b/third_party/WebKit/Source/devtools/front_end/common/FormatterWorkerPool.js
index b562b72264497319c305a00b6b1777f2e0e572e6..ce10eacae1932557d6f03dc4f61aa243637d580f 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/FormatterWorkerPool.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/FormatterWorkerPool.js
@@ -10,7 +10,7 @@ WebInspector.FormatterWorkerPool = function()
this._taskQueue = [];
/** @type {!Map<!WebInspector.Worker, ?WebInspector.FormatterWorkerPool.Task>} */
this._workerTasks = new Map();
-}
+};
WebInspector.FormatterWorkerPool.MaxWorkers = 2;
@@ -105,7 +105,7 @@ WebInspector.FormatterWorkerPool.prototype = {
this._processNextTask();
return promise;
},
-}
+};
/**
* @constructor
@@ -120,7 +120,7 @@ WebInspector.FormatterWorkerPool.Task = function(method, params, callback, isChu
this.params = params;
this.callback = callback;
this.isChunked = isChunked;
-}
+};
/** @type {!WebInspector.FormatterWorkerPool} */
WebInspector.formatterWorkerPool;

Powered by Google App Engine
This is Rietveld 408576698