Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1636)

Unified Diff: Source/devtools/front_end/sdk/ApplicationCacheModel.js

Issue 369853002: DevTools: Rename TargetAwareObject into SDKObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
}
/**
« no previous file with comments | « Source/devtools/front_end/audits/AuditController.js ('k') | Source/devtools/front_end/sdk/BreakpointManager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698