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

Unified Diff: webkit/port/platform/image-decoders/ImageDecoder.h

Issue 11580: Fix crashes while displaying large animated GIFs. Our old understanding of t... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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
« no previous file with comments | « webkit/port/platform/graphics/ImageSourceSkia.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/port/platform/image-decoders/ImageDecoder.h
===================================================================
--- webkit/port/platform/image-decoders/ImageDecoder.h (revision 5830)
+++ webkit/port/platform/image-decoders/ImageDecoder.h (working copy)
@@ -138,8 +138,8 @@
}
}
- SkBitmap& bitmap() { return m_bitmapRef->bitmap(); }
- const SkBitmap& bitmap() const { return m_bitmapRef->bitmap(); }
+ NativeImageSkia& bitmap() { return m_bitmapRef->bitmap(); }
+ const NativeImageSkia& bitmap() const { return m_bitmapRef->bitmap(); }
// Must be called before any pixels are written. Will return true on
// success, false if the memory allocation fails.
« no previous file with comments | « webkit/port/platform/graphics/ImageSourceSkia.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698