| 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()
|
|
|