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