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

Unified Diff: third_party/WebKit/Source/devtools/front_end/console/ConsolePanel.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/console/ConsolePanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsolePanel.js b/third_party/WebKit/Source/devtools/front_end/console/ConsolePanel.js
index b38626026b4dddebf27fe6f235a443c800762895..f76e231e48bfee40aed3ecccb2e45b187e78bb8d 100644
--- a/third_party/WebKit/Source/devtools/front_end/console/ConsolePanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/console/ConsolePanel.js
@@ -34,7 +34,7 @@ WebInspector.ConsolePanel = function()
{
WebInspector.Panel.call(this, "console");
this._view = WebInspector.ConsoleView.instance();
-}
+};
WebInspector.ConsolePanel.prototype = {
/**
@@ -70,7 +70,7 @@ WebInspector.ConsolePanel.prototype = {
},
__proto__: WebInspector.Panel.prototype
-}
+};
/**
* @constructor
@@ -84,7 +84,7 @@ WebInspector.ConsolePanel.WrapperView = function()
WebInspector.ConsolePanel.WrapperView._instance = this;
this._view = WebInspector.ConsoleView.instance();
-}
+};
WebInspector.ConsolePanel.WrapperView.prototype = {
wasShown: function()
@@ -106,7 +106,7 @@ WebInspector.ConsolePanel.WrapperView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -114,7 +114,7 @@ WebInspector.ConsolePanel.WrapperView.prototype = {
*/
WebInspector.ConsolePanel.ConsoleRevealer = function()
{
-}
+};
WebInspector.ConsolePanel.ConsoleRevealer.prototype = {
/**
@@ -132,7 +132,7 @@ WebInspector.ConsolePanel.ConsoleRevealer.prototype = {
WebInspector.viewManager.showView("console-view");
return Promise.resolve();
}
-}
+};
/**
* @return {!WebInspector.ConsolePanel}
@@ -140,4 +140,4 @@ WebInspector.ConsolePanel.ConsoleRevealer.prototype = {
WebInspector.ConsolePanel.instance = function()
{
return /** @type {!WebInspector.ConsolePanel} */ (self.runtime.sharedInstance(WebInspector.ConsolePanel));
-}
+};

Powered by Google App Engine
This is Rietveld 408576698