| Index: third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp b/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| index baa2ad8702a1f1399f204cdb8da595fc362d002f..4288635aa35e16b8f23ce739e37509192d3f353f 100644
|
| --- a/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/NetworkResourcesData.cpp
|
| @@ -210,10 +210,7 @@ void NetworkResourcesData::responseReceived(const String& requestId,
|
| resourceData->setMimeType(response.mimeType());
|
| resourceData->setTextEncodingName(response.textEncodingName());
|
| resourceData->setHTTPStatusCode(response.httpStatusCode());
|
| - resourceData->setRawHeaderSize(
|
| - response.resourceLoadInfo()
|
| - ? response.resourceLoadInfo()->encodedDataLength
|
| - : 0);
|
| + resourceData->setRawHeaderSize(response.encodedDataLength());
|
|
|
| String filePath = response.downloadedFilePath();
|
| if (!filePath.isEmpty()) {
|
|
|