Index: third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.h |
diff --git a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.h b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.h |
index 3e2923813b925de70c8025c7c8918cff36377b17..73759ba0be3182bc531a84d55c3ea53fc7598a33 100644 |
--- a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.h |
+++ b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoder.h |
@@ -39,7 +39,7 @@ namespace blink { |
class PNGImageDecoder; |
// This class decodes the ICO and CUR image formats. |
-class PLATFORM_EXPORT ICOImageDecoder : public ImageDecoder { |
+class PLATFORM_EXPORT ICOImageDecoder final : public ImageDecoder { |
public: |
ICOImageDecoder(AlphaOption, GammaAndColorProfileOption, size_t maxDecodedBytes); |
~ICOImageDecoder() override; |
@@ -69,6 +69,7 @@ private: |
}; |
struct IconDirectoryEntry { |
+ DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); |
IntSize m_size; |
uint16_t m_bitCount; |
IntPoint m_hotSpot; |