aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/lighting.cpp
diff options
context:
space:
mode:
authorGravatar tfarina <tfarina@chromium.org>2014-12-20 06:53:43 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-12-20 06:53:43 -0800
commit752e7eb157f8a18c26b88b7b85eecdbd5549d52e (patch)
tree796bd41d42d1ebc0dfb65c01173d974b60aebaf8 /gm/lighting.cpp
parentbb1af8dd75c1db1a4bec34e584d552ebbcb1fedc (diff)
Cleanup: Another round of override fixes.
BUG=skia:3075 TEST=ninja -C out/Debug TBR=mtklein@google.com Review URL: https://codereview.chromium.org/815883002
Diffstat (limited to 'gm/lighting.cpp')
-rw-r--r--gm/lighting.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/gm/lighting.cpp b/gm/lighting.cpp
index e7842a9c81..e56d9fc0c7 100644
--- a/gm/lighting.cpp
+++ b/gm/lighting.cpp
@@ -24,7 +24,7 @@ protected:
return kSkipTiled_Flag;
}
- virtual SkString onShortName() {
+ virtual SkString onShortName() SK_OVERRIDE {
return SkString("lighting");
}
@@ -41,7 +41,7 @@ protected:
canvas.drawText(str, strlen(str), SkIntToScalar(20), SkIntToScalar(70), paint);
}
- virtual SkISize onISize() {
+ virtual SkISize onISize() SK_OVERRIDE {
return SkISize::Make(WIDTH, HEIGHT);
}
@@ -54,7 +54,7 @@ protected:
canvas->restore();
}
- virtual void onDraw(SkCanvas* canvas) {
+ virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
if (!fInitialized) {
make_bitmap();
fInitialized = true;