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

Unified Diff: Source/platform/fonts/GlyphPageTreeNodeTest.cpp

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix 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/platform/fonts/GlyphBufferTest.cpp ('k') | Source/platform/fonts/SegmentedFontData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/fonts/GlyphPageTreeNodeTest.cpp
diff --git a/Source/platform/fonts/GlyphPageTreeNodeTest.cpp b/Source/platform/fonts/GlyphPageTreeNodeTest.cpp
index 953d0f7286ae47c2a7167d115feeafbc5ecd9e18..993180680ba46f2093a875ac9f0162c3857db837 100644
--- a/Source/platform/fonts/GlyphPageTreeNodeTest.cpp
+++ b/Source/platform/fonts/GlyphPageTreeNodeTest.cpp
@@ -16,7 +16,7 @@ public:
static PassRefPtr<TestCustomFontData> create() { return adoptRef(new TestCustomFontData()); }
private:
TestCustomFontData() { }
- virtual bool isLoadingFallback() const OVERRIDE { return true; }
+ virtual bool isLoadingFallback() const override { return true; }
};
class TestSimpleFontData : public SimpleFontData {
@@ -39,7 +39,7 @@ private:
{
}
- bool fillGlyphPage(GlyphPage* pageToFill, unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength) const OVERRIDE
+ bool fillGlyphPage(GlyphPage* pageToFill, unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength) const override
{
const Glyph kGlyph = 1;
String bufferString(buffer, bufferLength);
« no previous file with comments | « Source/platform/fonts/GlyphBufferTest.cpp ('k') | Source/platform/fonts/SegmentedFontData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698