aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pdf/SkPDFFontImpl.h
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-08-19 14:01:42 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-08-19 14:01:42 -0700
commit3a30cc1cbb2f42bcbd0695cb994a5f1a52754a89 (patch)
tree9f44fc97a6ffe00f3733c42878653e4380407d7c /src/pdf/SkPDFFontImpl.h
parentab42ec79d5dbf38b81394c55670b495cdf78b243 (diff)
Thou shalt use override consistently.
TBR=herb@google.com BUG=skia: Review URL: https://codereview.chromium.org/1285973006
Diffstat (limited to 'src/pdf/SkPDFFontImpl.h')
-rw-r--r--src/pdf/SkPDFFontImpl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pdf/SkPDFFontImpl.h b/src/pdf/SkPDFFontImpl.h
index 6147ad5a48..f6684489b1 100644
--- a/src/pdf/SkPDFFontImpl.h
+++ b/src/pdf/SkPDFFontImpl.h
@@ -15,8 +15,8 @@
class SkPDFType0Font : public SkPDFFont {
public:
virtual ~SkPDFType0Font();
- virtual bool multiByteGlyphs() const { return true; }
- virtual SkPDFFont* getFontSubset(const SkPDFGlyphSet* usage);
+ bool multiByteGlyphs() const override { return true; }
+ SkPDFFont* getFontSubset(const SkPDFGlyphSet* usage) override;
#ifdef SK_DEBUG
void emitObject(SkWStream*,
const SkPDFObjNumMap&,