Index: Source/platform/image-decoders/gif/GIFImageReader.h |
diff --git a/Source/platform/image-decoders/gif/GIFImageReader.h b/Source/platform/image-decoders/gif/GIFImageReader.h |
index 366a2cef1c9d501fabc98dcc9af687feb4973505..5d195e30af6c09f6b08ed400c57f0f1f94c78338 100644 |
--- a/Source/platform/image-decoders/gif/GIFImageReader.h |
+++ b/Source/platform/image-decoders/gif/GIFImageReader.h |
@@ -286,6 +286,7 @@ public: |
, m_version(0) |
, m_screenWidth(0) |
, m_screenHeight(0) |
+ , m_sizeFinal(false) |
, m_loopCount(cLoopCountNotSeen) |
, m_parseCompleted(false) |
{ |
@@ -351,6 +352,7 @@ private: |
int m_version; // Either 89 for GIF89 or 87 for GIF87. |
unsigned m_screenWidth; // Logical screen width & height. |
unsigned m_screenHeight; |
+ bool m_sizeFinal; |
Peter Kasting
2015/01/08 06:56:18
Nit: Please comment about what this means.
I migh
Alpha Left Google
2015/01/12 22:12:49
Done.
|
GIFColorMap m_globalColorMap; |
int m_loopCount; // Netscape specific extension block to control the number of animation loops a GIF renders. |