| Index: Source/devtools/front_end/sdk/Database.js
|
| diff --git a/Source/devtools/front_end/sdk/Database.js b/Source/devtools/front_end/sdk/Database.js
|
| index 463fb0c4076756043bdb5ce4bec356255971d80b..3ed4e1e2110673f6ad9284db28dc953d611efb7b 100644
|
| --- a/Source/devtools/front_end/sdk/Database.js
|
| +++ b/Source/devtools/front_end/sdk/Database.js
|
| @@ -134,12 +134,12 @@ WebInspector.Database.prototype = {
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.SDKObject}
|
| + * @extends {WebInspector.SDKModel}
|
| * @param {!WebInspector.Target} target
|
| */
|
| WebInspector.DatabaseModel = function(target)
|
| {
|
| - WebInspector.SDKObject.call(this, target);
|
| + WebInspector.SDKModel.call(this, WebInspector.DatabaseModel, target);
|
|
|
| this._databases = [];
|
| target.registerDatabaseDispatcher(new WebInspector.DatabaseDispatcher(this));
|
| @@ -181,7 +181,7 @@ WebInspector.DatabaseModel.prototype = {
|
| this.dispatchEventToListeners(WebInspector.DatabaseModel.Events.DatabaseAdded, database);
|
| },
|
|
|
| - __proto__: WebInspector.SDKObject.prototype
|
| + __proto__: WebInspector.SDKModel.prototype
|
| }
|
|
|
| /**
|
|
|