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

Unified Diff: Source/devtools/front_end/sdk/Resource.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
« no previous file with comments | « Source/devtools/front_end/sdk/NetworkRequest.js ('k') | Source/devtools/front_end/sdk/ResourceTreeModel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sdk/Resource.js
diff --git a/Source/devtools/front_end/sdk/Resource.js b/Source/devtools/front_end/sdk/Resource.js
index 1dcfd8362a627acd10abf4df1cfc358ecf0690db..2a6637fb3a2c3a1603b95424a4b2a6c406d78d4a 100644
--- a/Source/devtools/front_end/sdk/Resource.js
+++ b/Source/devtools/front_end/sdk/Resource.js
@@ -28,7 +28,7 @@
/**
* @constructor
- * @extends {WebInspector.TargetAwareObject}
+ * @extends {WebInspector.SDKObject}
* @implements {WebInspector.ContentProvider}
* @param {!WebInspector.Target} target
* @param {?WebInspector.NetworkRequest} request
@@ -42,7 +42,7 @@
*/
WebInspector.Resource = function(target, request, url, documentURL, frameId, loaderId, type, mimeType, isHidden)
{
- WebInspector.TargetAwareObject.call(this, target);
+ WebInspector.SDKObject.call(this, target);
this._request = request;
this.url = url;
this._documentURL = documentURL;
@@ -380,6 +380,6 @@ WebInspector.Resource.prototype = {
return !!this._isHidden;
},
- __proto__: WebInspector.TargetAwareObject.prototype
+ __proto__: WebInspector.SDKObject.prototype
}
« no previous file with comments | « Source/devtools/front_end/sdk/NetworkRequest.js ('k') | Source/devtools/front_end/sdk/ResourceTreeModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698