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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.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/elements/ElementStatePaneWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js b/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js
index b008343bf8eace6eaf26b0af4393adeee6cf903c..df5923f66e05ff429d867119fa25908dea2ca233 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js
@@ -53,7 +53,7 @@ WebInspector.ElementStatePaneWidget = function()
this.element.appendChild(table);
WebInspector.context.addFlavorChangeListener(WebInspector.DOMNode, this._update, this);
-}
+};
WebInspector.ElementStatePaneWidget.prototype = {
/**
@@ -66,12 +66,12 @@ WebInspector.ElementStatePaneWidget.prototype = {
if (this._target) {
var cssModel = WebInspector.CSSModel.fromTarget(this._target);
- cssModel.removeEventListener(WebInspector.CSSModel.Events.PseudoStateForced, this._update, this)
+ cssModel.removeEventListener(WebInspector.CSSModel.Events.PseudoStateForced, this._update, this);
}
this._target = target;
if (target) {
var cssModel = WebInspector.CSSModel.fromTarget(target);
- cssModel.addEventListener(WebInspector.CSSModel.Events.PseudoStateForced, this._update, this)
+ cssModel.addEventListener(WebInspector.CSSModel.Events.PseudoStateForced, this._update, this);
}
},
@@ -108,7 +108,7 @@ WebInspector.ElementStatePaneWidget.prototype = {
},
__proto__: WebInspector.Widget.prototype
-}
+};
/**
* @constructor
@@ -120,7 +120,7 @@ WebInspector.ElementStatePaneWidget.ButtonProvider = function()
this._button.addEventListener("click", this._clicked, this);
this._button.element.classList.add("monospace");
this._view = new WebInspector.ElementStatePaneWidget();
-}
+};
WebInspector.ElementStatePaneWidget.ButtonProvider.prototype = {
_clicked: function()
@@ -136,4 +136,4 @@ WebInspector.ElementStatePaneWidget.ButtonProvider.prototype = {
{
return this._button;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698