| Index: third_party/WebKit/Source/core/loader/FrameFetchContext.h
|
| diff --git a/third_party/WebKit/Source/core/loader/FrameFetchContext.h b/third_party/WebKit/Source/core/loader/FrameFetchContext.h
|
| index e65e70280feecf1d6a049a6f5b2c667753149d23..7193740d3a00bb7b97377a45c7bb3b9ce9740456 100644
|
| --- a/third_party/WebKit/Source/core/loader/FrameFetchContext.h
|
| +++ b/third_party/WebKit/Source/core/loader/FrameFetchContext.h
|
| @@ -93,8 +93,9 @@ class CORE_EXPORT FrameFetchContext final : public FetchContext {
|
| Resource*) override;
|
| void dispatchDidReceiveData(unsigned long identifier,
|
| const char* data,
|
| - int dataLength,
|
| - int encodedDataLength) override;
|
| + int dataLength) override;
|
| + void dispatchDidReceiveEncodedData(unsigned long identifier,
|
| + int encodedDataLength) override;
|
| void dispatchDidDownloadData(unsigned long identifier,
|
| int dataLength,
|
| int encodedDataLength) override;
|
| @@ -103,6 +104,7 @@ class CORE_EXPORT FrameFetchContext final : public FetchContext {
|
| int64_t encodedDataLength) override;
|
| void dispatchDidFail(unsigned long identifier,
|
| const ResourceError&,
|
| + int64_t encodedDataLength,
|
| bool isInternalRequest) override;
|
|
|
| bool shouldLoadNewResource(Resource::Type) const override;
|
|
|