| Index: content/child/web_url_loader_impl_unittest.cc
|
| diff --git a/content/child/web_url_loader_impl_unittest.cc b/content/child/web_url_loader_impl_unittest.cc
|
| index 2f377caf9a31ef03c6007f9fc6e6dfbb2f53793c..e6a2b7a75587997795934ce37c41da2adbb97606 100644
|
| --- a/content/child/web_url_loader_impl_unittest.cc
|
| +++ b/content/child/web_url_loader_impl_unittest.cc
|
| @@ -714,10 +714,11 @@ TEST_F(WebURLLoaderImplTest, SyncLengths) {
|
| client()->loader()->loadSynchronously(request, response, error, data,
|
| encoded_data_length);
|
|
|
| - EXPECT_EQ(kEncodedBodyLength, response.encodedBodyLength());
|
| + EXPECT_EQ(kEncodedBodyLength, response.encodedBodyLengthForTesting());
|
| EXPECT_EQ(kEncodedDataLength, encoded_data_length);
|
| int expected_decoded_body_length = strlen(kBodyData);
|
| - EXPECT_EQ(expected_decoded_body_length, response.decodedBodyLength());
|
| + EXPECT_EQ(expected_decoded_body_length,
|
| + response.decodedBodyLengthForTesting());
|
| }
|
|
|
| } // namespace
|
|
|