| Index: Source/devtools/front_end/NetworkRequest.js
|
| diff --git a/Source/devtools/front_end/NetworkRequest.js b/Source/devtools/front_end/NetworkRequest.js
|
| index 13a4a2d3254928e1d7a0183b0538a4a321944e3b..0987391467300c997918c310a73db5bd3700221b 100644
|
| --- a/Source/devtools/front_end/NetworkRequest.js
|
| +++ b/Source/devtools/front_end/NetworkRequest.js
|
| @@ -52,7 +52,6 @@ WebInspector.NetworkRequest = function(requestId, url, documentURL, frameId, loa
|
| this.statusText = "";
|
| this.requestMethod = "";
|
| this.requestTime = 0;
|
| - this.receiveHeadersEnd = 0;
|
|
|
| this._type = WebInspector.resourceTypes.Other;
|
| this._contentEncoded = false;
|
| @@ -213,16 +212,6 @@ WebInspector.NetworkRequest.prototype = {
|
| /**
|
| * @return {number}
|
| */
|
| - get receiveDuration()
|
| - {
|
| - if (this._endTime === -1 || this._responseReceivedTime === -1)
|
| - return -1;
|
| - return this._endTime - this._responseReceivedTime;
|
| - },
|
| -
|
| - /**
|
| - * @return {number}
|
| - */
|
| get resourceSize()
|
| {
|
| return this._resourceSize || 0;
|
|
|