Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1108)

Unified Diff: third_party/WebKit/Source/platform/graphics/ImageSource.cpp

Issue 2054643003: Remove duplication of encoded image data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address on hiroshige's review Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/ImageSource.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/ImageSource.cpp b/third_party/WebKit/Source/platform/graphics/ImageSource.cpp
index 8cd7c12e547787fce408157bb007957f9ffe9ded..f99004179a15541c74d3a60aa949aabd639df1be 100644
--- a/third_party/WebKit/Source/platform/graphics/ImageSource.cpp
+++ b/third_party/WebKit/Source/platform/graphics/ImageSource.cpp
@@ -46,6 +46,16 @@ size_t ImageSource::clearCacheExceptFrame(size_t clearExceptFrame)
return m_decoder ? m_decoder->clearCacheExceptFrame(clearExceptFrame) : 0;
}
+bool ImageSource::hasData() const
+{
+ return m_decoder ? m_decoder->hasData() : false;
+}
+
+PassRefPtr<SharedBuffer> ImageSource::data()
+{
+ return m_decoder->data();
scroggo_chromium 2016/06/20 19:00:43 Shouldn't you check to make sure m_decoder is not
hajimehoshi 2016/06/22 09:42:30 Done.
+}
+
void ImageSource::setData(SharedBuffer& data, bool allDataReceived)
{
// Create a decoder by sniffing the encoded data. If insufficient data bytes are available to

Powered by Google App Engine
This is Rietveld 408576698