| Index: Source/devtools/front_end/sdk/DOMStorage.js
|
| diff --git a/Source/devtools/front_end/sdk/DOMStorage.js b/Source/devtools/front_end/sdk/DOMStorage.js
|
| index 251fb9a832a5a77bd868b85662c66b696e327a47..b7e00d42b7f8a168fd2f9c27c8cbcd02f011ad4a 100644
|
| --- a/Source/devtools/front_end/sdk/DOMStorage.js
|
| +++ b/Source/devtools/front_end/sdk/DOMStorage.js
|
| @@ -108,12 +108,12 @@ WebInspector.DOMStorage.prototype = {
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.TargetAwareObject}
|
| + * @extends {WebInspector.SDKObject}
|
| * @param {!WebInspector.Target} target
|
| */
|
| WebInspector.DOMStorageModel = function(target)
|
| {
|
| - WebInspector.TargetAwareObject.call(this, target);
|
| + WebInspector.SDKObject.call(this, target);
|
|
|
| /** @type {!Object.<string, !WebInspector.DOMStorage>} */
|
| this._storages = {};
|
| @@ -257,7 +257,7 @@ WebInspector.DOMStorageModel.prototype = {
|
| return result;
|
| },
|
|
|
| - __proto__: WebInspector.TargetAwareObject.prototype
|
| + __proto__: WebInspector.SDKObject.prototype
|
| }
|
|
|
| /**
|
|
|