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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.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/RuntimeModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
index 3c00144e014974f19274981b270181a0519e7972..16a336733ca7001e8b49f8d536bc044d212c8f6d 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
@@ -49,7 +49,7 @@ WebInspector.RuntimeModel = function(target)
this._agent.setCustomObjectFormatterEnabled(true);
WebInspector.moduleSetting("customFormatters").addChangeListener(this._customFormattersStateChanged.bind(this));
-}
+};
/** @enum {symbol} */
WebInspector.RuntimeModel.Events = {
@@ -57,7 +57,7 @@ WebInspector.RuntimeModel.Events = {
ExecutionContextDestroyed: Symbol("ExecutionContextDestroyed"),
ExecutionContextChanged: Symbol("ExecutionContextChanged"),
ExecutionContextOrderChanged: Symbol("ExecutionContextOrderChanged")
-}
+};
WebInspector.RuntimeModel._privateScript = "private script";
@@ -344,7 +344,7 @@ WebInspector.RuntimeModel.prototype = {
},
__proto__: WebInspector.SDKModel.prototype
-}
+};
/**
* @constructor
@@ -354,7 +354,7 @@ WebInspector.RuntimeModel.prototype = {
WebInspector.RuntimeDispatcher = function(runtimeModel)
{
this._runtimeModel = runtimeModel;
-}
+};
WebInspector.RuntimeDispatcher.prototype = {
/**
@@ -473,7 +473,7 @@ WebInspector.RuntimeDispatcher.prototype = {
{
this._runtimeModel._inspectRequested(payload, hints);
}
-}
+};
/**
* @constructor
@@ -500,7 +500,7 @@ WebInspector.ExecutionContext = function(target, id, name, origin, isDefault, fr
var parsedUrl = origin.asParsedURL();
if (!this._label && parsedUrl)
this._label = parsedUrl.lastPathComponentWithFragment();
-}
+};
/**
* @param {!WebInspector.ExecutionContext} a
@@ -532,7 +532,7 @@ WebInspector.ExecutionContext.comparator = function(a, b)
if (b.isDefault)
return +1;
return a.name.localeCompare(b.name);
-}
+};
WebInspector.ExecutionContext.prototype = {
/**
@@ -826,7 +826,7 @@ WebInspector.ExecutionContext.prototype = {
},
__proto__: WebInspector.SDKObject.prototype
-}
+};
/**
* @constructor
@@ -856,7 +856,7 @@ WebInspector.EventListener = function(target, eventTarget, type, useCapture, pas
this._sourceURL = script ? script.contentURL() : "";
this._removeFunction = removeFunction;
this._listenerType = listenerType || "normal";
-}
+};
WebInspector.EventListener.prototype = {
/**
@@ -1020,4 +1020,4 @@ WebInspector.EventListener.prototype = {
},
__proto__: WebInspector.SDKObject.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698