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

Unified Diff: Source/core/css/FontFaceSetLoadEvent.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch 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/css/FontFaceSet.cpp ('k') | Source/core/css/LocalFontFaceSource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/FontFaceSetLoadEvent.h
diff --git a/Source/core/css/FontFaceSetLoadEvent.h b/Source/core/css/FontFaceSetLoadEvent.h
index 20bea801ebc2aa6a40d96826028e15939eb8839a..06990f37e8df72974b0afb93465a0d314a6cbf3a 100644
--- a/Source/core/css/FontFaceSetLoadEvent.h
+++ b/Source/core/css/FontFaceSetLoadEvent.h
@@ -43,7 +43,7 @@ struct FontFaceSetLoadEventInit : public EventInit {
FontFaceArray fontfaces;
};
-class FontFaceSetLoadEvent FINAL : public Event {
+class FontFaceSetLoadEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<FontFaceSetLoadEvent> create()
@@ -65,9 +65,9 @@ public:
FontFaceArray fontfaces() const { return m_fontfaces; }
- virtual const AtomicString& interfaceName() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
FontFaceSetLoadEvent();
« no previous file with comments | « Source/core/css/FontFaceSet.cpp ('k') | Source/core/css/LocalFontFaceSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698