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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.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/ElementsPanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js b/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js
index 73777b3c25fb49dfecb7ffd64b448c0b6a009b0d..cb313c00f3ca76eeb0cd6d48254817ae798865d6 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js
@@ -84,7 +84,7 @@ WebInspector.ElementsPanel = function()
WebInspector.moduleSetting("showUAShadowDOM").addChangeListener(this._showUAShadowDOMChanged.bind(this));
WebInspector.targetManager.addModelListener(WebInspector.DOMModel, WebInspector.DOMModel.Events.DocumentUpdated, this._documentUpdatedEvent, this);
WebInspector.extensionServer.addEventListener(WebInspector.ExtensionServer.Events.SidebarPaneAdded, this._extensionSidebarPaneAdded, this);
-}
+};
WebInspector.ElementsPanel._elementsSidebarViewTitleSymbol = Symbol("title");
@@ -952,7 +952,7 @@ WebInspector.ElementsPanel.prototype = {
},
__proto__: WebInspector.Panel.prototype
-}
+};
/**
* @constructor
@@ -960,7 +960,7 @@ WebInspector.ElementsPanel.prototype = {
*/
WebInspector.ElementsPanel.ContextMenuProvider = function()
{
-}
+};
WebInspector.ElementsPanel.ContextMenuProvider.prototype = {
/**
@@ -989,13 +989,13 @@ WebInspector.ElementsPanel.ContextMenuProvider.prototype = {
var commandCallback = WebInspector.Revealer.reveal.bind(WebInspector.Revealer, object);
contextMenu.appendItem(WebInspector.UIString.capitalize("Reveal in Elements ^panel"), commandCallback);
}
-}
+};
/**
* @constructor
* @implements {WebInspector.Revealer}
*/
-WebInspector.ElementsPanel.DOMNodeRevealer = function() { }
+WebInspector.ElementsPanel.DOMNodeRevealer = function() { };
WebInspector.ElementsPanel.DOMNodeRevealer.prototype = {
/**
@@ -1046,13 +1046,13 @@ WebInspector.ElementsPanel.DOMNodeRevealer.prototype = {
}
}
}
-}
+};
/**
* @constructor
* @implements {WebInspector.Revealer}
*/
-WebInspector.ElementsPanel.CSSPropertyRevealer = function() { }
+WebInspector.ElementsPanel.CSSPropertyRevealer = function() { };
WebInspector.ElementsPanel.CSSPropertyRevealer.prototype = {
/**
@@ -1065,7 +1065,7 @@ WebInspector.ElementsPanel.CSSPropertyRevealer.prototype = {
var panel = WebInspector.ElementsPanel.instance();
return panel._revealProperty(/** @type {!WebInspector.CSSProperty} */ (property));
}
-}
+};
/**
* @return {!WebInspector.ElementsPanel}
@@ -1073,13 +1073,13 @@ WebInspector.ElementsPanel.CSSPropertyRevealer.prototype = {
WebInspector.ElementsPanel.instance = function()
{
return /** @type {!WebInspector.ElementsPanel} */ (self.runtime.sharedInstance(WebInspector.ElementsPanel));
-}
+};
/**
* @constructor
* @implements {WebInspector.ActionDelegate}
*/
-WebInspector.ElementsActionDelegate = function() { }
+WebInspector.ElementsActionDelegate = function() { };
WebInspector.ElementsActionDelegate.prototype = {
/**
@@ -1107,7 +1107,7 @@ WebInspector.ElementsActionDelegate.prototype = {
}
return false;
}
-}
+};
/**
* @constructor
@@ -1115,7 +1115,7 @@ WebInspector.ElementsActionDelegate.prototype = {
*/
WebInspector.ElementsPanel.PseudoStateMarkerDecorator = function()
{
-}
+};
WebInspector.ElementsPanel.PseudoStateMarkerDecorator.prototype = {
/**
@@ -1127,4 +1127,4 @@ WebInspector.ElementsPanel.PseudoStateMarkerDecorator.prototype = {
{
return { color: "orange", title: WebInspector.UIString("Element state: %s", ":" + WebInspector.CSSModel.fromNode(node).pseudoState(node).join(", :")) };
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698