Index: third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js b/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js |
index 1ff7ec90df08bf3e3f6f6dc38d0b96f67a5f0809..ccb848966ae65fee1abf93ff3dd6c11eb30f0482 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.js |
@@ -19,7 +19,7 @@ WebInspector.TargetManager = function() |
/** @type {!Map<symbol, !Array<{modelClass: !Function, thisObject: (!Object|undefined), listener: function(!WebInspector.Event)}>>} */ |
this._modelListeners = new Map(); |
this._isSuspended = false; |
-} |
+}; |
/** @enum {symbol} */ |
WebInspector.TargetManager.Events = { |
@@ -31,7 +31,7 @@ WebInspector.TargetManager.Events = { |
WillReloadPage: Symbol("WillReloadPage"), |
TargetDisposed: Symbol("TargetDisposed"), |
SuspendStateChanged: Symbol("SuspendStateChanged") |
-} |
+}; |
WebInspector.TargetManager._listenersSymbol = Symbol("WebInspector.TargetManager.Listeners"); |
@@ -398,14 +398,14 @@ WebInspector.TargetManager.prototype = { |
}, |
__proto__: WebInspector.Object.prototype |
-} |
+}; |
/** |
* @interface |
*/ |
WebInspector.TargetManager.Observer = function() |
{ |
-} |
+}; |
WebInspector.TargetManager.Observer.prototype = { |
/** |
@@ -417,7 +417,7 @@ WebInspector.TargetManager.Observer.prototype = { |
* @param {!WebInspector.Target} target |
*/ |
targetRemoved: function(target) { }, |
-} |
+}; |
/** |
* @type {!WebInspector.TargetManager} |