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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/EmptyWidget.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/ui/EmptyWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/EmptyWidget.js b/third_party/WebKit/Source/devtools/front_end/ui/EmptyWidget.js
index 23eefbda4fe79e2129f81d6d209a68115c260da4..4a74ea42865e4543a28ed9e0b7eee2031d4f6678 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/EmptyWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/EmptyWidget.js
@@ -39,7 +39,7 @@ WebInspector.EmptyWidget = function(text)
this.element.classList.add("empty-view");
this.textElement = this.element.createChild("span");
this._text = text;
-}
+};
WebInspector.EmptyWidget.prototype = {
wasShown: function()
@@ -55,5 +55,5 @@ WebInspector.EmptyWidget.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698