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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/ResourceScriptMapping.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/bindings/ResourceScriptMapping.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/ResourceScriptMapping.js b/third_party/WebKit/Source/devtools/front_end/bindings/ResourceScriptMapping.js
index a8caac26e89246b4dd31f7e2bf8dd479195003b1..f6ca484b703ce5f9b79e9733506b3e4112d35f23 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/ResourceScriptMapping.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/ResourceScriptMapping.js
@@ -53,7 +53,7 @@ WebInspector.ResourceScriptMapping = function(debuggerModel, workspace, networkM
workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAdded, this),
workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this)
];
-}
+};
WebInspector.ResourceScriptMapping.prototype = {
/**
@@ -264,7 +264,7 @@ WebInspector.ResourceScriptMapping.prototype = {
WebInspector.EventTarget.removeEventListeners(this._eventListeners);
this._debuggerReset();
}
-}
+};
/**
* @constructor
@@ -285,13 +285,13 @@ WebInspector.ResourceScriptFile = function(resourceScriptMapping, uiSourceCode,
this._uiSourceCode.addEventListener(WebInspector.UISourceCode.Events.WorkingCopyChanged, this._workingCopyChanged, this);
this._uiSourceCode.addEventListener(WebInspector.UISourceCode.Events.WorkingCopyCommitted, this._workingCopyCommitted, this);
-}
+};
/** @enum {symbol} */
WebInspector.ResourceScriptFile.Events = {
DidMergeToVM: Symbol("DidMergeToVM"),
DidDivergeFromVM: Symbol("DidDivergeFromVM"),
-}
+};
WebInspector.ResourceScriptFile.prototype = {
/**
@@ -470,4 +470,4 @@ WebInspector.ResourceScriptFile.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698