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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.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/resources/DatabaseTableView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js b/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js
index 3d7ac44b2a923819c3b2e0357502161b3a2323db..c80329d1a7cc419f1f0fbebc94263aea68426d0a 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/DatabaseTableView.js
@@ -42,7 +42,7 @@ WebInspector.DatabaseTableView = function(database, tableName)
this.refreshButton.addEventListener("click", this._refreshButtonClicked, this);
this._visibleColumnsInput = new WebInspector.ToolbarInput(WebInspector.UIString("Visible columns"), 1);
this._visibleColumnsInput.addEventListener(WebInspector.ToolbarInput.Event.TextChanged, this._onVisibleColumnsChanged, this);
-}
+};
WebInspector.DatabaseTableView.prototype = {
wasShown: function()
@@ -144,4 +144,4 @@ WebInspector.DatabaseTableView.prototype = {
},
__proto__: WebInspector.SimpleView.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698