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

Unified Diff: third_party/WebKit/Source/devtools/front_end/extensions/ExtensionView.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/ExtensionView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionView.js b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionView.js
index 5f5f7fe13cd9ceb3e76b068971ed9ac17d3b6fa4..13f6899a262f0f22cb3b1665e83c6b26b686902f 100644
--- a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionView.js
+++ b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionView.js
@@ -51,7 +51,7 @@ WebInspector.ExtensionView = function(server, id, src, className)
this.setDefaultFocusedElement(this._iframe);
this.element.appendChild(this._iframe);
-}
+};
WebInspector.ExtensionView.prototype = {
wasShown: function()
@@ -75,7 +75,7 @@ WebInspector.ExtensionView.prototype = {
},
__proto__: WebInspector.Widget.prototype
-}
+};
/**
* @constructor
@@ -89,7 +89,7 @@ WebInspector.ExtensionNotifierView = function(server, id)
this._server = server;
this._id = id;
-}
+};
WebInspector.ExtensionNotifierView.prototype = {
wasShown: function()
@@ -103,4 +103,4 @@ WebInspector.ExtensionNotifierView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698