| Index: Source/core/loader/ImageLoader.h
|
| diff --git a/Source/core/loader/ImageLoader.h b/Source/core/loader/ImageLoader.h
|
| index c7709465165829e76b333dc7baf0e24e83c11e24..4c21261fe805f5db3806cf7b2321bdad6f4dd862 100644
|
| --- a/Source/core/loader/ImageLoader.h
|
| +++ b/Source/core/loader/ImageLoader.h
|
| @@ -61,7 +61,7 @@ typedef EventSender<ImageLoader> ImageEventSender;
|
| class CORE_EXPORT ImageLoader : public NoBaseWillBeGarbageCollectedFinalized<ImageLoader>, public ImageResourceClient {
|
| public:
|
| explicit ImageLoader(Element*);
|
| - virtual ~ImageLoader();
|
| + ~ImageLoader() override;
|
|
|
| // We must run the destructor in the eager sweeping phase and call
|
| // m_image->removeClient(this). Otherwise, the ImageResource can invoke
|
| @@ -118,9 +118,9 @@ public:
|
| void addClient(ImageLoaderClient*);
|
| void removeClient(ImageLoaderClient*);
|
|
|
| - virtual bool getImageAnimationPolicy(ImageResource*, ImageAnimationPolicy&) override final;
|
| + bool getImageAnimationPolicy(ImageResource*, ImageAnimationPolicy&) final;
|
| protected:
|
| - virtual void notifyFinished(Resource*) override;
|
| + void notifyFinished(Resource*) override;
|
|
|
| private:
|
| class Task;
|
|
|