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

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

Issue 1226293002: Fix virtual/override/final usage in Source/core/{animation,css,style}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/CSSGroupingRule.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSFontSelector.h
diff --git a/Source/core/css/CSSFontSelector.h b/Source/core/css/CSSFontSelector.h
index af8ee460fdc9e315533f9d87f2b902430eb739ec..1ef33994d7c1d8d2bd555c5f76fe134a8205a253 100644
--- a/Source/core/css/CSSFontSelector.h
+++ b/Source/core/css/CSSFontSelector.h
@@ -48,12 +48,12 @@ public:
{
return adoptRefWillBeNoop(new CSSFontSelector(document));
}
- virtual ~CSSFontSelector();
+ ~CSSFontSelector() override;
- virtual unsigned version() const override { return m_fontFaceCache.version(); }
+ unsigned version() const override { return m_fontFaceCache.version(); }
- virtual PassRefPtr<FontData> getFontData(const FontDescription&, const AtomicString&) override;
- virtual void willUseFontData(const FontDescription&, const AtomicString& family, UChar32) override;
+ PassRefPtr<FontData> getFontData(const FontDescription&, const AtomicString&) override;
+ void willUseFontData(const FontDescription&, const AtomicString& family, UChar32) override;
bool isPlatformFontAvailable(const FontDescription&, const AtomicString& family);
#if !ENABLE(OILPAN)
@@ -63,7 +63,7 @@ public:
void fontFaceInvalidated();
// FontCacheClient implementation
- virtual void fontCacheInvalidated() override;
+ void fontCacheInvalidated() override;
void registerForInvalidationCallbacks(CSSFontSelectorClient*);
#if !ENABLE(OILPAN)
« no previous file with comments | « Source/core/css/CSSFontFaceRule.h ('k') | Source/core/css/CSSGroupingRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698