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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/TargetManager.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/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}

Powered by Google App Engine
This is Rietveld 408576698