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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.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/CSSWorkspaceBinding.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js b/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js
index 89138574807f4642b10c5086c06dd64bfd0d86c8..3ecf3c0721b08364fe93725a157590bfed0bbd2c 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/CSSWorkspaceBinding.js
@@ -17,7 +17,7 @@ WebInspector.CSSWorkspaceBinding = function(targetManager, workspace, networkMap
/** @type {!Map.<!WebInspector.CSSModel, !WebInspector.CSSWorkspaceBinding.TargetInfo>} */
this._modelToTargetInfo = new Map();
targetManager.observeTargets(this);
-}
+};
WebInspector.CSSWorkspaceBinding.prototype = {
/**
@@ -143,7 +143,7 @@ WebInspector.CSSWorkspaceBinding.prototype = {
var targetInfo = this._targetInfo(header);
return targetInfo ? targetInfo._rawLocationToUILocation(header, rawLocation.lineNumber, rawLocation.columnNumber) : null;
}
-}
+};
/**
* @constructor
@@ -159,7 +159,7 @@ WebInspector.CSSWorkspaceBinding.TargetInfo = function(cssModel, workspace, netw
/** @type {!Multimap<!WebInspector.CSSStyleSheetHeader, !WebInspector.LiveLocation>} */
this._locations = new Multimap();
-}
+};
WebInspector.CSSWorkspaceBinding.TargetInfo.prototype = {
/**
@@ -209,7 +209,7 @@ WebInspector.CSSWorkspaceBinding.TargetInfo.prototype = {
this._stylesSourceMapping.dispose();
this._sassSourceMapping.dispose();
}
-}
+};
/**
* @constructor
@@ -231,7 +231,7 @@ WebInspector.CSSWorkspaceBinding.LiveLocation = function(cssModel, header, rawLo
this._clearStyleSheet();
else
this._setStyleSheet(header);
-}
+};
WebInspector.CSSWorkspaceBinding.LiveLocation.prototype = {
/**
@@ -315,7 +315,7 @@ WebInspector.CSSWorkspaceBinding.LiveLocation.prototype = {
},
__proto__: WebInspector.LiveLocationWithPool.prototype
-}
+};
/**
* @type {!WebInspector.CSSWorkspaceBinding}

Powered by Google App Engine
This is Rietveld 408576698