| Index: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| diff --git a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| index 37cb7efd45267e787428643bc033e131c43a66e5..0ee9c2188c0103292fafc4003cb4696e0add2dff 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| @@ -425,7 +425,7 @@ void WebURLResponse::setRemotePort(unsigned short remotePort) {
|
| m_resourceResponse->setRemotePort(remotePort);
|
| }
|
|
|
| -long long WebURLResponse::encodedDataLength() const {
|
| +long long WebURLResponse::encodedDataLengthForTesting() const {
|
| return m_resourceResponse->encodedDataLength();
|
| }
|
|
|
| @@ -433,7 +433,7 @@ void WebURLResponse::addToEncodedDataLength(long long length) {
|
| m_resourceResponse->addToEncodedDataLength(length);
|
| }
|
|
|
| -long long WebURLResponse::encodedBodyLength() const {
|
| +long long WebURLResponse::encodedBodyLengthForTesting() const {
|
| return m_resourceResponse->encodedBodyLength();
|
| }
|
|
|
| @@ -441,7 +441,7 @@ void WebURLResponse::addToEncodedBodyLength(long long length) {
|
| m_resourceResponse->addToEncodedBodyLength(length);
|
| }
|
|
|
| -long long WebURLResponse::decodedBodyLength() const {
|
| +long long WebURLResponse::decodedBodyLengthForTesting() const {
|
| return m_resourceResponse->decodedBodyLength();
|
| }
|
|
|
|
|