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

Unified Diff: third_party/WebKit/Source/devtools/front_end/extensions/ExtensionPanel.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/extensions/ExtensionPanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionPanel.js b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionPanel.js
index 973cf7b12f273bdb82d4bfb0e5992a9fc873d01f..34c38384223afcd81faf8bbb4c8044bbb62e25fe 100644
--- a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionPanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionPanel.js
@@ -50,7 +50,7 @@ WebInspector.ExtensionPanel = function(server, panelName, id, pageURL)
var extensionView = new WebInspector.ExtensionView(server, this._id, pageURL, "extension");
extensionView.show(this._searchableView.element);
-}
+};
WebInspector.ExtensionPanel.prototype = {
/**
@@ -127,7 +127,7 @@ WebInspector.ExtensionPanel.prototype = {
},
__proto__: WebInspector.Panel.prototype
-}
+};
/**
* @constructor
@@ -144,7 +144,7 @@ WebInspector.ExtensionButton = function(server, id, iconURL, tooltip, disabled)
this._toolbarButton = new WebInspector.ToolbarButton("", "");
this._toolbarButton.addEventListener("click", server.notifyButtonClicked.bind(server, this._id));
this.update(iconURL, tooltip, disabled);
-}
+};
WebInspector.ExtensionButton.prototype = {
/**
@@ -169,7 +169,7 @@ WebInspector.ExtensionButton.prototype = {
{
return this._toolbarButton;
}
-}
+};
/**
* @constructor
@@ -186,7 +186,7 @@ WebInspector.ExtensionSidebarPane = function(server, panelName, title, id)
this._panelName = panelName;
this._server = server;
this._id = id;
-}
+};
WebInspector.ExtensionSidebarPane.prototype = {
/**
@@ -306,4 +306,4 @@ WebInspector.ExtensionSidebarPane.prototype = {
},
__proto__: WebInspector.SimpleView.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698