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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/Target.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/Target.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/Target.js b/third_party/WebKit/Source/devtools/front_end/sdk/Target.js
index 82f9ee07038be1424c800846418a946a9eba8b53..3c37163d2f11ba20893439590bf8cbf07b6e4760 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/Target.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/Target.js
@@ -27,7 +27,7 @@ WebInspector.Target = function(targetManager, name, capabilitiesMask, connection
/** @type {!Map.<!Function, !WebInspector.SDKModel>} */
this._modelByConstructor = new Map();
-}
+};
/**
* @enum {number}
@@ -232,7 +232,7 @@ WebInspector.Target.prototype = {
},
__proto__: Protocol.Agents.prototype
-}
+};
/**
* @constructor
@@ -243,7 +243,7 @@ WebInspector.SDKObject = function(target)
{
WebInspector.Object.call(this);
this._target = target;
-}
+};
WebInspector.SDKObject.prototype = {
/**
@@ -255,7 +255,7 @@ WebInspector.SDKObject.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @constructor
@@ -267,7 +267,7 @@ WebInspector.SDKModel = function(modelClass, target)
{
WebInspector.SDKObject.call(this, target);
target._modelByConstructor.set(modelClass, this);
-}
+};
WebInspector.SDKModel.prototype = {
/**
@@ -300,4 +300,4 @@ WebInspector.SDKModel.prototype = {
},
__proto__: WebInspector.SDKObject.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698