| Index: Source/devtools/front_end/sdk/ApplicationCacheModel.js
|
| diff --git a/Source/devtools/front_end/sdk/ApplicationCacheModel.js b/Source/devtools/front_end/sdk/ApplicationCacheModel.js
|
| index ea9d3e1e78d82491530b99f0a9c530d209e04210..af8086797e5f143f7fcab7ac58c4f5dcc0911305 100644
|
| --- a/Source/devtools/front_end/sdk/ApplicationCacheModel.js
|
| +++ b/Source/devtools/front_end/sdk/ApplicationCacheModel.js
|
| @@ -28,12 +28,12 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.TargetAwareObject}
|
| + * @extends {WebInspector.SDKObject}
|
| * @param {!WebInspector.Target} target
|
| */
|
| WebInspector.ApplicationCacheModel = function(target)
|
| {
|
| - WebInspector.TargetAwareObject.call(this, target);
|
| + WebInspector.SDKObject.call(this, target);
|
|
|
| target.registerApplicationCacheDispatcher(new WebInspector.ApplicationCacheDispatcher(this));
|
| this._agent = target.applicationCacheAgent();
|
| @@ -228,7 +228,7 @@ WebInspector.ApplicationCacheModel.prototype = {
|
| this.dispatchEventToListeners(WebInspector.ApplicationCacheModel.EventTypes.NetworkStateChanged, isNowOnline);
|
| },
|
|
|
| - __proto__: WebInspector.TargetAwareObject.prototype
|
| + __proto__: WebInspector.SDKObject.prototype
|
| }
|
|
|
| /**
|
|
|