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

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

Issue 129063002: Update CSS classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/CSSFontFaceRule.h ('k') | Source/core/css/CSSFontSelector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSFontFaceSource.h
diff --git a/Source/core/css/CSSFontFaceSource.h b/Source/core/css/CSSFontFaceSource.h
index 8ba3f02753462c54f6f94c9c6496c89660763e7d..0d434f7d9d833feb00812792ea8a8323825ec449 100644
--- a/Source/core/css/CSSFontFaceSource.h
+++ b/Source/core/css/CSSFontFaceSource.h
@@ -44,7 +44,7 @@ class SVGFontFaceElement;
#endif
-class CSSFontFaceSource : public FontResourceClient {
+class CSSFontFaceSource FINAL : public FontResourceClient {
public:
CSSFontFaceSource(const String&, FontResource* = 0);
virtual ~CSSFontFaceSource();
@@ -58,7 +58,7 @@ public:
void setFontFace(CSSFontFace* face) { m_face = face; }
virtual void didStartFontLoad(FontResource*) OVERRIDE;
- virtual void fontLoaded(FontResource*);
+ virtual void fontLoaded(FontResource*) OVERRIDE;
PassRefPtr<SimpleFontData> getFontData(const FontDescription&);
« no previous file with comments | « Source/core/css/CSSFontFaceRule.h ('k') | Source/core/css/CSSFontSelector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698