| Index: third_party/WebKit/public/platform/WebURLLoaderClient.h
|
| diff --git a/third_party/WebKit/public/platform/WebURLLoaderClient.h b/third_party/WebKit/public/platform/WebURLLoaderClient.h
|
| index 578eb55569c221cc4710da390255551585bcca8a..b8fb54c80382933c276b2060aa14b61a71f20491 100644
|
| --- a/third_party/WebKit/public/platform/WebURLLoaderClient.h
|
| +++ b/third_party/WebKit/public/platform/WebURLLoaderClient.h
|
| @@ -93,13 +93,15 @@ class BLINK_PLATFORM_EXPORT WebURLLoaderClient {
|
| // |totalEncodedDataLength| may be equal to kUnknownEncodedDataLength.
|
| virtual void DidFinishLoading(double finish_time,
|
| int64_t total_encoded_data_length,
|
| - int64_t total_encoded_body_length) {}
|
| + int64_t total_encoded_body_length,
|
| + int64_t total_decoded_body_length) {}
|
|
|
| // Called when the load completes with an error.
|
| // |totalEncodedDataLength| may be equal to kUnknownEncodedDataLength.
|
| virtual void DidFail(const WebURLError&,
|
| int64_t total_encoded_data_length,
|
| - int64_t total_encoded_body_length) {}
|
| + int64_t total_encoded_body_length,
|
| + int64_t total_decoded_body_length) {}
|
|
|
| // Value passed to didFinishLoading when total encoded data length isn't
|
| // known.
|
|
|