| Index: Source/core/fileapi/Blob.h
|
| diff --git a/Source/core/fileapi/Blob.h b/Source/core/fileapi/Blob.h
|
| index c756a87c52d66b2c7b1e8741d3a81655c605bc42..604ce85ab1cc094313fedbaef7825f81d7877ded 100644
|
| --- a/Source/core/fileapi/Blob.h
|
| +++ b/Source/core/fileapi/Blob.h
|
| @@ -64,7 +64,7 @@ public:
|
| return new Blob(blobDataHandle);
|
| }
|
|
|
| - virtual ~Blob();
|
| + ~Blob() override;
|
|
|
| virtual unsigned long long size() const { return m_blobDataHandle->size(); }
|
| virtual Blob* slice(long long start, long long end, const String& contentType, ExceptionState&) const;
|
| @@ -98,7 +98,7 @@ public:
|
| virtual void appendTo(BlobData&) const;
|
|
|
| // URLRegistrable to support PublicURLs.
|
| - virtual URLRegistry& registry() const override final;
|
| + URLRegistry& registry() const final;
|
|
|
| DEFINE_INLINE_TRACE() { }
|
|
|
|
|