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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/HistoryInput.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/HistoryInput.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/HistoryInput.js b/third_party/WebKit/Source/devtools/front_end/ui/HistoryInput.js
index f8ab8a5626bdb33f5785447a39ded532b1f7a9d2..d8ce8ca5363ad42bc4e8b9cfdae98115552aa6aa 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/HistoryInput.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/HistoryInput.js
@@ -8,7 +8,7 @@
*/
WebInspector.HistoryInput = function()
{
-}
+};
/**
* @return {!WebInspector.HistoryInput}
@@ -19,7 +19,7 @@ WebInspector.HistoryInput.create = function()
WebInspector.HistoryInput._constructor = registerCustomElement("input", "history-input", WebInspector.HistoryInput.prototype);
return /** @type {!WebInspector.HistoryInput} */(new WebInspector.HistoryInput._constructor());
-}
+};
WebInspector.HistoryInput.prototype = {
createdCallback: function()
@@ -69,5 +69,5 @@ WebInspector.HistoryInput.prototype = {
},
__proto__: HTMLInputElement.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698