Fix the Qt build.
ImageDecoderQt needs m_size and m_sizeAvailable to be protected.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@44562
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2009-06-10 Simon Hausmann <simon.hausmann@nokia.com>
+
+ Fix the Qt build.
+
+ ImageDecoderQt needs m_size and m_sizeAvailable to be protected.
+
+ * platform/image-decoders/ImageDecoder.h:
+
2009-06-10 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
Reviewed by Simon Hausmann.
2009-06-10 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
Reviewed by Simon Hausmann.
RefPtr<SharedBuffer> m_data; // The encoded data.
Vector<RGBA32Buffer> m_frameBufferCache;
mutable bool m_failed;
RefPtr<SharedBuffer> m_data; // The encoded data.
Vector<RGBA32Buffer> m_frameBufferCache;
mutable bool m_failed;
+ IntSize m_size;
+ bool m_sizeAvailable;
private:
// Some code paths compute the size of the image as "width * height * 4"
private:
// Some code paths compute the size of the image as "width * height * 4"
* static_cast<unsigned long long>(height);
return total_size > ((1 << 29) - 1);
}
* static_cast<unsigned long long>(height);
return total_size > ((1 << 29) - 1);
}
-
- IntSize m_size;
- bool m_sizeAvailable;
};
} // namespace WebCore
};
} // namespace WebCore