Chromium Code Reviews| 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 41b7bee7db94cf0f07c1b382f38b047b64651e6c..28971980f0427ca9eb0709a32caaf579a759e89d 100644 |
| --- a/third_party/WebKit/public/platform/WebURLLoaderClient.h |
| +++ b/third_party/WebKit/public/platform/WebURLLoaderClient.h |
| @@ -45,8 +45,10 @@ class BLINK_PLATFORM_EXPORT WebURLLoaderClient { |
| public: |
| // Called when following a redirect. |newRequest| contains the request |
| // generated by the redirect. The client may modify |newRequest|. |
| + // |encodedDataLength| is the size of the data that came from the network |
| + // for this redirect, or zero if the redirect was served from cache. |
| virtual void willFollowRedirect( |
| - WebURLLoader*, WebURLRequest& newRequest, const WebURLResponse& redirectResponse) { } |
| + WebURLLoader*, WebURLRequest& newRequest, const WebURLResponse& redirectResponse, int64_t encodedDataLength) {} |
| // Called to report upload progress. The bytes reported correspond to |
| // the HTTP message body. |
| @@ -68,8 +70,15 @@ public: |
| // if WebURLRequest's downloadToFile flag was set to true. |
| virtual void didDownloadData(WebURLLoader*, int dataLength, int encodedDataLength) { } |
| - // Called when a chunk of response data is received. |
| - virtual void didReceiveData(WebURLLoader*, const char* data, int dataLength, int encodedDataLength) { } |
| + // Called when a chunk of response data is received. |dataLength| is the |
| + // number of bytes pointed to by |data|. |encodedDataLength| is the number |
| + // of bytes actually received from network to serve this chunk, including |
| + // HTTP headers and framing if relevant. It is 0 if the response was served |
| + // from cache, and -1 if this information is unavailable. |
|
kinuko
2016/07/07 05:11:40
nit: does it make sense to have TODO to address th
Adam Rice
2016/07/07 07:40:01
Yes. I have added one.
|
| + // |encodedBodyLength| is the number of bytes used to store this chunk, |
| + // possibly encrypted, excluding headers or framing. It is set even if the |
| + // response was served from cache. |
| + virtual void didReceiveData(WebURLLoader*, const char* data, int dataLength, int encodedDataLength, int encodedBodyLength) {} |
| // Called when a chunk of renderer-generated metadata is received from the cache. |
| virtual void didReceiveCachedMetadata(WebURLLoader*, const char* data, int dataLength) { } |