aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/getpostextpath.cpp
diff options
context:
space:
mode:
authorGravatar tfarina <tfarina@chromium.org>2015-01-05 17:18:51 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-01-05 17:18:51 -0800
commitaa458fb20a4350da581f8ceec69ea16eec295ced (patch)
treedb81877fcdf6d4bf361ddfce5f81072ea5cc996b /gm/getpostextpath.cpp
parent4dd6b72b31d091968c6cc92558684d87cc7b2008 (diff)
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
Diffstat (limited to 'gm/getpostextpath.cpp')
-rw-r--r--gm/getpostextpath.cpp6
1 files changed, 3 insertions, 3 deletions
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));