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

Unified Diff: Source/devtools/front_end/sdk/BreakpointManager.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/BreakpointManager.js
diff --git a/Source/devtools/front_end/sdk/BreakpointManager.js b/Source/devtools/front_end/sdk/BreakpointManager.js
index 80a91ed7ce1bbe13464f24f0d46a6c7a1fe4f828..e34a4e396e35fe4c2a1de3c4939bc2e8ea521d30 100644
--- a/Source/devtools/front_end/sdk/BreakpointManager.js
+++ b/Source/devtools/front_end/sdk/BreakpointManager.js
@@ -695,13 +695,13 @@ WebInspector.BreakpointManager.Breakpoint.prototype = {
/**
* @constructor
- * @extends {WebInspector.TargetAware}
+ * @extends {WebInspector.SDKObject}
* @param {!WebInspector.Target} target
* @param {!WebInspector.BreakpointManager.Breakpoint} breakpoint
*/
WebInspector.BreakpointManager.TargetBreakpoint = function(target, breakpoint)
{
- WebInspector.TargetAware.call(this, target);
+ WebInspector.SDKObject.call(this, target);
this._breakpoint = breakpoint;
/** @type {!Array.<!WebInspector.Script.Location>} */
this._liveLocations = [];
@@ -850,7 +850,7 @@ WebInspector.BreakpointManager.TargetBreakpoint.prototype = {
this.target().debuggerModel.removeEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, this._updateInDebugger, this);
},
- __proto__: WebInspector.TargetAware.prototype
+ __proto__: WebInspector.SDKObject.prototype
}
/**
« no previous file with comments | « Source/devtools/front_end/sdk/ApplicationCacheModel.js ('k') | Source/devtools/front_end/sdk/CPUProfilerModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698