| Index: Source/core/fetch/ImageResourceClient.h
|
| diff --git a/Source/core/fetch/ImageResourceClient.h b/Source/core/fetch/ImageResourceClient.h
|
| index a995edaee1b15ce866c84d92f09676107f284c0f..dfdcb38f08b0652171c35daf165a44d3308f39f7 100644
|
| --- a/Source/core/fetch/ImageResourceClient.h
|
| +++ b/Source/core/fetch/ImageResourceClient.h
|
| @@ -34,9 +34,9 @@ class IntRect;
|
|
|
| class CORE_EXPORT ImageResourceClient : public ResourceClient {
|
| public:
|
| - virtual ~ImageResourceClient() { }
|
| + ~ImageResourceClient() override {}
|
| static ResourceClientType expectedType() { return ImageType; }
|
| - virtual ResourceClientType resourceClientType() const override final { return expectedType(); }
|
| + ResourceClientType resourceClientType() const final { return expectedType(); }
|
|
|
| // Called whenever a frame of an image changes, either because we got more data from the network or
|
| // because we are animating. If not null, the IntRect is the changed rect of the image.
|
|
|