Index: third_party/WebKit/Source/core/fetch/ImageResource.cpp |
diff --git a/third_party/WebKit/Source/core/fetch/ImageResource.cpp b/third_party/WebKit/Source/core/fetch/ImageResource.cpp |
index c10b9a9682ccdc81789ec0b463f4832a8b7b1a9c..326c1da02e70d2d1e1bf8ecb274081eaf92b6649 100644 |
--- a/third_party/WebKit/Source/core/fetch/ImageResource.cpp |
+++ b/third_party/WebKit/Source/core/fetch/ImageResource.cpp |
@@ -124,10 +124,7 @@ void ImageResource::addObserver(ImageResourceObserver* observer) |
if (isCacheValidator()) |
return; |
- if (m_data && !m_image && !errorOccurred()) { |
- createImage(); |
- m_image->setData(m_data, true); |
- } |
+ DCHECK(!m_data || m_image); |
if (m_image && !m_image->isNull()) { |
observer->imageChanged(this); |
@@ -196,12 +193,10 @@ void ImageResource::destroyDecodedDataForFailedRevalidation() |
void ImageResource::destroyDecodedDataIfPossible() |
{ |
- if (!hasClientsOrObservers() && !isLoading() && (!m_image || (m_image->hasOneRef() && m_image->isBitmapImage()))) { |
- clearImage(); |
- setDecodedSize(0); |
- } else if (m_image && !errorOccurred()) { |
+ if (!m_image) |
+ return; |
+ if ((!hasClientsOrObservers() && !isLoading() && m_image->hasOneRef() && m_image->isBitmapImage()) || !errorOccurred()) |
m_image->destroyDecodedData(); |
- } |
} |
void ImageResource::doResetAnimation() |
@@ -226,6 +221,16 @@ void ImageResource::allClientsAndObserversRemoved() |
Resource::allClientsAndObserversRemoved(); |
} |
+PassRefPtr<SharedBuffer> ImageResource::resourceBuffer() const |
+{ |
+ RefPtr<SharedBuffer> data = Resource::resourceBuffer(); |
+ if (data) |
+ return data.release(); |
+ if (m_image) |
+ return m_image->data(); |
+ return nullptr; |
+} |
+ |
void ImageResource::appendData(const char* data, size_t length) |
{ |
if (m_multipartParser) { |
@@ -370,8 +375,10 @@ void ImageResource::updateImage(bool allDataReceived) |
// Have the image update its data from its internal buffer. |
// It will not do anything now, but will delay decoding until |
// queried for info (like size or specific image frames). |
- if (m_image) |
+ if (m_data) { |
+ DCHECK(m_image); |
sizeAvailable = m_image->setData(m_data, allDataReceived); |
+ } |
// Go ahead and tell our observers to try to draw if we have either |
// received all the data or the size is known. Each chunk from the |
@@ -390,13 +397,15 @@ void ImageResource::updateImage(bool allDataReceived) |
// (decoding delayed until painting) that seems hard. |
notifyObservers(); |
} |
+ |
+ if (allDataReceived) |
+ m_data.clear(); |
} |
void ImageResource::updateImageAndClearBuffer() |
{ |
clearImage(); |
updateImage(true); |
- m_data.clear(); |
} |
void ImageResource::finish(double loadFinishTime) |
@@ -518,7 +527,7 @@ void ImageResource::reloadIfLoFi(ResourceFetcher* fetcher) |
if (isLoading()) |
m_loader->cancel(); |
else |
- updateImageAndClearBuffer(); |
hiroshige
2016/07/08 08:28:41
FYI [1] will change this line. Because [1] is to b
hiroshige
2016/07/08 08:29:26
Sorry I forgot the link:
[1] https://codereview.ch
|
+ updateImage(true); |
setStatus(NotStarted); |
fetcher->startLoad(this); |
} |