From aa458fb20a4350da581f8ceec69ea16eec295ced Mon Sep 17 00:00:00 2001 From: tfarina Date: Mon, 5 Jan 2015 17:18:51 -0800 Subject: Cleanup: More override fixes - another round. BUG=skia:3075 TEST=ninja -C out/Debug TBR=reed@google.com Review URL: https://codereview.chromium.org/831113002 --- gm/getpostextpath.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gm/getpostextpath.cpp') diff --git a/gm/getpostextpath.cpp b/gm/getpostextpath.cpp index 45701071bb..8cad512c3c 100644 --- a/gm/getpostextpath.cpp +++ b/gm/getpostextpath.cpp @@ -20,11 +20,11 @@ protected: return kSkipTiled_Flag; } - SkString onShortName() { + SkString onShortName() SK_OVERRIDE { return SkString("getpostextpath"); } - SkISize onISize() { return SkISize::Make(480, 780); } + SkISize onISize() SK_OVERRIDE { return SkISize::Make(480, 780); } static void strokePath(SkCanvas* canvas, const SkPath& path) { SkPaint paint; @@ -34,7 +34,7 @@ protected: canvas->drawPath(path, paint); } - virtual void onDraw(SkCanvas* canvas) { + virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { // explicitly add spaces, to test a prev. bug const char* text = "Ham bur ge fons"; int len = SkToInt(strlen(text)); -- cgit v1.2.3