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

Unified Diff: Source/core/css/LocalFontFaceSource.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/KeyframeStyleRuleCSSStyleDeclaration.h ('k') | Source/core/css/MediaQueryList.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/LocalFontFaceSource.h
diff --git a/Source/core/css/LocalFontFaceSource.h b/Source/core/css/LocalFontFaceSource.h
index e2ad06983b77eb4041cb27d37d23d0469fb6ede5..6e90667274b6e619d3184d873fdadf0d42231cfc 100644
--- a/Source/core/css/LocalFontFaceSource.h
+++ b/Source/core/css/LocalFontFaceSource.h
@@ -13,11 +13,11 @@ namespace blink {
class LocalFontFaceSource final : public CSSFontFaceSource {
public:
LocalFontFaceSource(const String& fontName) : m_fontName(fontName) { }
- virtual bool isLocal() const override { return true; }
- virtual bool isLocalFontAvailable(const FontDescription&) override;
+ bool isLocal() const override { return true; }
+ bool isLocalFontAvailable(const FontDescription&) override;
private:
- virtual PassRefPtr<SimpleFontData> createFontData(const FontDescription&) override;
+ PassRefPtr<SimpleFontData> createFontData(const FontDescription&) override;
class LocalFontHistograms {
public:
« no previous file with comments | « Source/core/css/KeyframeStyleRuleCSSStyleDeclaration.h ('k') | Source/core/css/MediaQueryList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698