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

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

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch Created 6 years, 2 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/AffectedByFocusTest.cpp ('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 17645abd934ca5960f483eff486c9b17ba45e689..c1841d25896ee6a7effea154c350fb99d5a05bb2 100644
--- a/Source/core/css/BinaryDataFontFaceSource.h
+++ b/Source/core/css/BinaryDataFontFaceSource.h
@@ -13,14 +13,14 @@ namespace blink {
class FontCustomPlatformData;
class SharedBuffer;
-class BinaryDataFontFaceSource FINAL : public CSSFontFaceSource {
+class BinaryDataFontFaceSource final : public CSSFontFaceSource {
public:
explicit BinaryDataFontFaceSource(SharedBuffer*);
virtual ~BinaryDataFontFaceSource();
- virtual bool isValid() const OVERRIDE;
+ virtual bool isValid() const override;
private:
- virtual PassRefPtr<SimpleFontData> createFontData(const FontDescription&) OVERRIDE;
+ virtual PassRefPtr<SimpleFontData> createFontData(const FontDescription&) override;
OwnPtr<FontCustomPlatformData> m_customPlatformData;
};
« no previous file with comments | « Source/core/css/AffectedByFocusTest.cpp ('k') | Source/core/css/CSSBasicShapes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698