| Index: Source/core/fetch/ImageResource.cpp
|
| diff --git a/Source/core/fetch/ImageResource.cpp b/Source/core/fetch/ImageResource.cpp
|
| index c407551ecb1b7784f95c623ff61153d5306c94ef..d9ff30ef476438acf333699122cd794db084e2b9 100644
|
| --- a/Source/core/fetch/ImageResource.cpp
|
| +++ b/Source/core/fetch/ImageResource.cpp
|
| @@ -414,7 +414,7 @@ void ImageResource::error(Resource::Status status)
|
| notifyObservers();
|
| }
|
|
|
| -void ImageResource::responseReceived(const ResourceResponse& response)
|
| +void ImageResource::responseReceived(const ResourceResponse& response, PassOwnPtr<WebDataConsumerHandle> handle)
|
| {
|
| if (m_loadingMultipartContent && m_data)
|
| finishOnePart();
|
| @@ -427,7 +427,7 @@ void ImageResource::responseReceived(const ResourceResponse& response)
|
| m_hasDevicePixelRatioHeaderValue = false;
|
| }
|
| }
|
| - Resource::responseReceived(response);
|
| + Resource::responseReceived(response, handle);
|
| }
|
|
|
| void ImageResource::decodedSizeChanged(const blink::Image* image, int delta)
|
|
|