| Index: Source/devtools/front_end/sdk/NetworkLog.js
|
| diff --git a/Source/devtools/front_end/sdk/NetworkLog.js b/Source/devtools/front_end/sdk/NetworkLog.js
|
| index c7a2eb82886ebc623de08325320c45e037b7c697..e95707d7c40d02e291cc22683052fdedf014c38c 100644
|
| --- a/Source/devtools/front_end/sdk/NetworkLog.js
|
| +++ b/Source/devtools/front_end/sdk/NetworkLog.js
|
| @@ -30,12 +30,12 @@
|
|
|
| /**
|
| * @constructor
|
| - * @extends {WebInspector.TargetAware}
|
| + * @extends {WebInspector.SDKObject}
|
| * @param {!WebInspector.Target} target
|
| */
|
| WebInspector.NetworkLog = function(target)
|
| {
|
| - WebInspector.TargetAware.call(this, target);
|
| + WebInspector.SDKObject.call(this, target);
|
|
|
| this._requests = [];
|
| this._requestForId = {};
|
| @@ -136,7 +136,7 @@ WebInspector.NetworkLog.prototype = {
|
| return this._requestForId[requestId];
|
| },
|
|
|
| - __proto__: WebInspector.TargetAware.prototype
|
| + __proto__: WebInspector.SDKObject.prototype
|
| }
|
|
|
| /**
|
|
|