| 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)
|
|
|