summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/qt/ImageDecoderQt.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/graphics/qt/ImageDecoderQt.h')
-rw-r--r--Source/WebCore/platform/graphics/qt/ImageDecoderQt.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/WebCore/platform/graphics/qt/ImageDecoderQt.h b/Source/WebCore/platform/graphics/qt/ImageDecoderQt.h
index 8169251c4..aa4385194 100644
--- a/Source/WebCore/platform/graphics/qt/ImageDecoderQt.h
+++ b/Source/WebCore/platform/graphics/qt/ImageDecoderQt.h
@@ -37,21 +37,21 @@
namespace WebCore {
-class ImageDecoderQt : public ImageDecoder
+class ImageDecoderQt final : public ImageDecoder
{
public:
ImageDecoderQt(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
~ImageDecoderQt();
- virtual void setData(SharedBuffer* data, bool allDataReceived);
- virtual bool isSizeAvailable();
- virtual size_t frameCount();
- virtual int repetitionCount() const;
- virtual ImageFrame* frameBufferAtIndex(size_t index);
+ void setData(SharedBuffer* data, bool allDataReceived) final;
+ bool isSizeAvailable() final;
+ size_t frameCount() final;
+ int repetitionCount() const final;
+ ImageFrame* frameBufferAtIndex(size_t index) final;
- virtual String filenameExtension() const;
+ String filenameExtension() const final;
- virtual void clearFrameBufferCache(size_t clearBeforeFrame);
+ void clearFrameBufferCache(size_t clearBeforeFrame) final;
private:
ImageDecoderQt(const ImageDecoderQt&);