| Index: Source/core/svg/graphics/SVGImageChromeClient.h
|
| diff --git a/Source/core/svg/graphics/SVGImageChromeClient.h b/Source/core/svg/graphics/SVGImageChromeClient.h
|
| index d10221160a64fedac4773588f1d0923b3a5f9763..c21a0cde031bda42b3da9a0289d562efcea3e2ba 100644
|
| --- a/Source/core/svg/graphics/SVGImageChromeClient.h
|
| +++ b/Source/core/svg/graphics/SVGImageChromeClient.h
|
| @@ -34,18 +34,18 @@
|
|
|
| namespace blink {
|
|
|
| -class SVGImageChromeClient FINAL : public EmptyChromeClient {
|
| +class SVGImageChromeClient final : public EmptyChromeClient {
|
| WTF_MAKE_NONCOPYABLE(SVGImageChromeClient); WTF_MAKE_FAST_ALLOCATED;
|
| public:
|
| explicit SVGImageChromeClient(SVGImage*);
|
| - virtual bool isSVGImageChromeClient() const OVERRIDE;
|
| + virtual bool isSVGImageChromeClient() const override;
|
|
|
| SVGImage* image() const { return m_image; }
|
|
|
| private:
|
| - virtual void chromeDestroyed() OVERRIDE;
|
| - virtual void invalidateContentsAndRootView(const IntRect&) OVERRIDE;
|
| - virtual void scheduleAnimation() OVERRIDE;
|
| + virtual void chromeDestroyed() override;
|
| + virtual void invalidateContentsAndRootView(const IntRect&) override;
|
| + virtual void scheduleAnimation() override;
|
|
|
| void animationTimerFired(Timer<SVGImageChromeClient>*);
|
|
|
|
|