diff options
Diffstat (limited to 'WebCore/platform/graphics/ImageSource.h')
-rw-r--r-- | WebCore/platform/graphics/ImageSource.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/WebCore/platform/graphics/ImageSource.h b/WebCore/platform/graphics/ImageSource.h index 55e0c5a..07cc2c2 100644 --- a/WebCore/platform/graphics/ImageSource.h +++ b/WebCore/platform/graphics/ImageSource.h @@ -71,9 +71,15 @@ typedef ImageDecoderQt* NativeImageSourcePtr; typedef QPixmap* NativeImagePtr; #elif PLATFORM(SGL) class String; +#ifdef ANDROID_ANIMATED_GIF +class ImageDecoder; +#endif struct NativeImageSourcePtr { SkString m_url; PrivateAndroidImageSourceRec* m_image; +#ifdef ANDROID_ANIMATED_GIF + ImageDecoder* m_gifDecoder; +#endif }; typedef const Vector<char>* NativeBytePtr; typedef SkBitmapRef* NativeImagePtr; |