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

Unified Diff: Source/core/css/BinaryDataFontFaceSource.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/animation/css/CSSAnimations.h ('k') | Source/core/css/CSSBasicShapes.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/BinaryDataFontFaceSource.h
diff --git a/Source/core/css/BinaryDataFontFaceSource.h b/Source/core/css/BinaryDataFontFaceSource.h
index 50d01f0ffc72f8cdd47aff4d58a806727ac37cea..2bc8565f94592e94b5ebb021f289fe8719fbb1bd 100644
--- a/Source/core/css/BinaryDataFontFaceSource.h
+++ b/Source/core/css/BinaryDataFontFaceSource.h
@@ -15,12 +15,12 @@ class SharedBuffer;
class BinaryDataFontFaceSource final : public CSSFontFaceSource {
public:
- explicit BinaryDataFontFaceSource(SharedBuffer*, String&);
- virtual ~BinaryDataFontFaceSource();
- virtual bool isValid() const override;
+ BinaryDataFontFaceSource(SharedBuffer*, String&);
+ ~BinaryDataFontFaceSource() override;
+ bool isValid() const override;
private:
- virtual PassRefPtr<SimpleFontData> createFontData(const FontDescription&) override;
+ PassRefPtr<SimpleFontData> createFontData(const FontDescription&) override;
OwnPtr<FontCustomPlatformData> m_customPlatformData;
};
« no previous file with comments | « Source/core/animation/css/CSSAnimations.h ('k') | Source/core/css/CSSBasicShapes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698