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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/CustomPreviewSection.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/components/CustomPreviewSection.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/CustomPreviewSection.js b/third_party/WebKit/Source/devtools/front_end/components/CustomPreviewSection.js
index 43cd3d1433566d0fb2eff433ed1d1d2016242a62..3721810b0816a55c14b4801b7b8f150b6d341bec 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/CustomPreviewSection.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/CustomPreviewSection.js
@@ -32,7 +32,7 @@ WebInspector.CustomPreviewSection = function(object)
}
this._sectionElement.appendChild(this._header);
-}
+};
/**
* @constructor
@@ -46,7 +46,7 @@ WebInspector.CustomPreviewComponent = function(object)
var shadowRoot = WebInspector.createShadowRootWithCoreStyles(this.element, "components/customPreviewSection.css");
this.element.addEventListener("contextmenu", this._contextMenuEventFired.bind(this), false);
shadowRoot.appendChild(this._customPreviewSection.element());
-}
+};
WebInspector.CustomPreviewComponent.prototype = {
expandIfPossible: function()
@@ -73,7 +73,7 @@ WebInspector.CustomPreviewComponent.prototype = {
this._customPreviewSection = null;
this.element.shadowRoot.appendChild(WebInspector.ObjectPropertiesSection.defaultObjectPresentation(this._object));
}
-}
+};
WebInspector.CustomPreviewSection._tagsWhiteList = new Set(["span", "div", "ol", "li","table", "tr", "td"]);
@@ -248,4 +248,4 @@ WebInspector.CustomPreviewSection.prototype = {
this._toggleExpand();
}
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698