Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: Source/core/svg/graphics/SVGImageChromeClient.h

Issue 631153003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/svg (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/graphics/SVGImage.h ('k') | Source/core/svg/graphics/SVGImageForContainer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>*);
« no previous file with comments | « Source/core/svg/graphics/SVGImage.h ('k') | Source/core/svg/graphics/SVGImageForContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698