| 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 7be9accc5877f0f95ba0b33bc58cc9d977c1e6c3..63b5ed953c4ec0973f54a446efc6cbbb47ced409 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js
|
| @@ -97,7 +97,7 @@ WebInspector.IDBDatabaseView.prototype = {
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.View}
|
| + * @extends {WebInspector.SimpleView}
|
| * @param {!WebInspector.IndexedDBModel} model
|
| * @param {!WebInspector.IndexedDBModel.DatabaseId} databaseId
|
| * @param {!WebInspector.IndexedDBModel.ObjectStore} objectStore
|
| @@ -105,7 +105,7 @@ WebInspector.IDBDatabaseView.prototype = {
|
| */
|
| WebInspector.IDBDataView = function(model, databaseId, objectStore, index)
|
| {
|
| - WebInspector.View.call(this, WebInspector.UIString("IDB"));
|
| + WebInspector.SimpleView.call(this, WebInspector.UIString("IDB"));
|
| this.registerRequiredCSS("resources/indexedDBViews.css");
|
|
|
| this._model = model;
|
| @@ -337,7 +337,7 @@ WebInspector.IDBDataView.prototype = {
|
| * @override
|
| * @return {!Array.<!WebInspector.ToolbarItem>}
|
| */
|
| - toolbarItems: function()
|
| + syncToolbarItems: function()
|
| {
|
| return [this._refreshButton, this._clearButton];
|
| },
|
| @@ -348,7 +348,7 @@ WebInspector.IDBDataView.prototype = {
|
| this._entries = [];
|
| },
|
|
|
| - __proto__: WebInspector.View.prototype
|
| + __proto__: WebInspector.SimpleView.prototype
|
| }
|
|
|
| /**
|
|
|