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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/ClassesPaneWidget.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/ClassesPaneWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ClassesPaneWidget.js b/third_party/WebKit/Source/devtools/front_end/elements/ClassesPaneWidget.js
index 591965cc81f1e8789796191c9cec4a6ae9de4379..c9aacb8750eb2e18ca373bdcb4aa4697eaa4b4fc 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/ClassesPaneWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/ClassesPaneWidget.js
@@ -27,7 +27,7 @@ WebInspector.ClassesPaneWidget = function()
/** @type {!Set<!WebInspector.DOMNode>} */
this._mutatingNodes = new Set();
WebInspector.context.addFlavorChangeListener(WebInspector.DOMNode, this._update, this);
-}
+};
WebInspector.ClassesPaneWidget._classesSymbol = Symbol("WebInspector.ClassesPaneWidget._classesSymbol");
@@ -187,7 +187,7 @@ WebInspector.ClassesPaneWidget.prototype = {
},
__proto__: WebInspector.Widget.prototype
-}
+};
/**
* @constructor
@@ -200,7 +200,7 @@ WebInspector.ClassesPaneWidget.ButtonProvider = function()
this._button.element.classList.add("monospace");
this._button.addEventListener("click", this._clicked, this);
this._view = new WebInspector.ClassesPaneWidget();
-}
+};
WebInspector.ClassesPaneWidget.ButtonProvider.prototype = {
_clicked: function()
@@ -216,7 +216,7 @@ WebInspector.ClassesPaneWidget.ButtonProvider.prototype = {
{
return this._button;
}
-}
+};
/**
* @constructor
@@ -229,7 +229,7 @@ WebInspector.ClassesPaneWidget.ClassNamePrompt = function()
this.disableDefaultSuggestionForEmptyInput();
this._selectedFrameId = "";
this._classNamesPromise = null;
-}
+};
WebInspector.ClassesPaneWidget.ClassNamePrompt.prototype = {
/**
@@ -286,4 +286,4 @@ WebInspector.ClassesPaneWidget.ClassNamePrompt.prototype = {
},
__proto__: WebInspector.TextPrompt.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698