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

Unified Diff: gm/verttext2.cpp

Issue 815883002: Cleanup: Another round of override fixes. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: revert include changes Created 6 years 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 | « gm/verttext.cpp ('k') | gm/xfermodes.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/verttext2.cpp
diff --git a/gm/verttext2.cpp b/gm/verttext2.cpp
index 0ccdec19cadfce01896b0437a69276b029f57121..5067bbb7459bbbc7866473e5b577ab0f1227862e 100644
--- a/gm/verttext2.cpp
+++ b/gm/verttext2.cpp
@@ -36,14 +36,13 @@ protected:
}
- SkString onShortName() {
+ SkString onShortName() SK_OVERRIDE {
return SkString("verttext2");
}
- SkISize onISize() { return SkISize::Make(640, 480); }
-
- virtual void onDraw(SkCanvas* canvas) {
+ SkISize onISize() SK_OVERRIDE { return SkISize::Make(640, 480); }
+ virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
for (int i = 0; i < 3; ++i) {
SkPaint paint;
paint.setColor(SK_ColorRED);
« no previous file with comments | « gm/verttext.cpp ('k') | gm/xfermodes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698