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

Unified Diff: Source/devtools/front_end/audits/AuditController.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 | « no previous file | Source/devtools/front_end/sdk/ApplicationCacheModel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/audits/AuditController.js
diff --git a/Source/devtools/front_end/audits/AuditController.js b/Source/devtools/front_end/audits/AuditController.js
index 95c6c6a274212a028bc62133216b45417c4d879b..fefd95f4aeded08283bb5c945658638276c0ddb4 100644
--- a/Source/devtools/front_end/audits/AuditController.js
+++ b/Source/devtools/front_end/audits/AuditController.js
@@ -31,13 +31,13 @@
/**
* @constructor
- * @extends {WebInspector.TargetAware}
+ * @extends {WebInspector.SDKObject}
* @param {!WebInspector.Target} target
* @param {!WebInspector.AuditsPanel} auditsPanel
*/
WebInspector.AuditController = function(target, auditsPanel)
{
- WebInspector.TargetAware.call(this, target);
+ WebInspector.SDKObject.call(this, target);
this._auditsPanel = auditsPanel;
this.target().resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.Load, this._didMainResourceLoad, this);
}
@@ -163,5 +163,5 @@ WebInspector.AuditController.prototype = {
this._auditsPanel.clearResults();
},
- __proto__: WebInspector.TargetAware.prototype
+ __proto__: WebInspector.SDKObject.prototype
}
« no previous file with comments | « no previous file | Source/devtools/front_end/sdk/ApplicationCacheModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698