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; |