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

Unified Diff: Source/devtools/blink/chromeServerProfile/Default/Cache/f_00004d

Issue 242263007: Add <label> to items in Event Listener Breakpoint of Chrome Dev Tools Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 6 years, 8 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/blink/chromeServerProfile/Default/Cache/f_00004d
diff --git a/Source/devtools/front_end/ResourceTreeModel.js b/Source/devtools/blink/chromeServerProfile/Default/Cache/f_00004d
similarity index 98%
copy from Source/devtools/front_end/ResourceTreeModel.js
copy to Source/devtools/blink/chromeServerProfile/Default/Cache/f_00004d
index 1082bbeb0f5a232208192b00f88105975c7d636d..27f56abec24c2c67dbd9531c9ca8cccb103be4bd 100644
--- a/Source/devtools/front_end/ResourceTreeModel.js
+++ b/Source/devtools/blink/chromeServerProfile/Default/Cache/f_00004d
@@ -30,13 +30,11 @@
/**
* @constructor
- * @extends {WebInspector.TargetAwareObject}
+ * @extends {WebInspector.Object}
* @param {!WebInspector.Target} target
*/
WebInspector.ResourceTreeModel = function(target)
{
- WebInspector.TargetAwareObject.call(this, target);
-
target.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.RequestFinished, this._onRequestFinished, this);
target.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.RequestUpdateDropped, this._onRequestUpdateDropped, this);
@@ -476,7 +474,7 @@ WebInspector.ResourceTreeModel.prototype = {
this._agent.reload(ignoreCache, scriptToEvaluateOnLoad, scriptPreprocessor);
},
- __proto__: WebInspector.TargetAwareObject.prototype
+ __proto__: WebInspector.Object.prototype
}
/**
@@ -517,14 +515,6 @@ WebInspector.ResourceTreeFrame = function(model, parentFrame, frameId, payload)
WebInspector.ResourceTreeFrame.prototype = {
/**
- * @return {!WebInspector.Target}
- */
- target: function()
- {
- return this._model.target();
- },
-
- /**
* @return {string}
*/
get id()

Powered by Google App Engine
This is Rietveld 408576698