| 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
|
| -}
|
| +};
|
|
|