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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.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/IndexedDBViews.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js b/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js
index da985ef2f3a3fdb8806b06ebd107ebcf9b8c32f1..415ffc5908206c74b1bed1ff407e2bdde49c0833 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js
@@ -46,7 +46,7 @@ WebInspector.IDBDatabaseView = function(database)
this._versionElement = this.element.createChild("div", "header-row");
this.update(database);
-}
+};
WebInspector.IDBDatabaseView.prototype = {
/**
@@ -78,7 +78,7 @@ WebInspector.IDBDatabaseView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
@@ -113,7 +113,7 @@ WebInspector.IDBDataView = function(model, databaseId, objectStore, index)
this.update(objectStore, index);
this._entries = [];
-}
+};
WebInspector.IDBDataView.prototype = {
/**
@@ -335,7 +335,7 @@ WebInspector.IDBDataView.prototype = {
},
__proto__: WebInspector.SimpleView.prototype
-}
+};
/**
* @constructor
@@ -346,7 +346,7 @@ WebInspector.IDBDataGridNode = function(data)
{
WebInspector.DataGridNode.call(this, data, false);
this.selectable = false;
-}
+};
WebInspector.IDBDataGridNode.prototype = {
/**
@@ -373,4 +373,4 @@ WebInspector.IDBDataGridNode.prototype = {
},
__proto__: WebInspector.DataGridNode.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698