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

Unified Diff: gm/gm.h

Issue 806653007: Fix up all the easy virtual ... SK_OVERRIDE cases. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 11 months 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/glyph_pos_align.cpp ('k') | gm/gmmain.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/gm.h
diff --git a/gm/gm.h b/gm/gm.h
index 9ba9f452a798bfb6d365511b1e7a6be3c5b4e4bf..703fc90451968d30442cc03d1448487f2565fa3c 100644
--- a/gm/gm.h
+++ b/gm/gm.h
@@ -27,11 +27,11 @@
// See colorwheel.cpp for example usage.
#define DEF_SIMPLE_GM(NAME, CANVAS, W, H) \
class SK_MACRO_CONCAT(NAME, _GM) : public skiagm::GM { \
- virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE; \
- virtual SkISize onISize() SK_OVERRIDE { \
+ void onDraw(SkCanvas* canvas) SK_OVERRIDE; \
+ SkISize onISize() SK_OVERRIDE { \
return SkISize::Make((W), (H)); \
} \
- virtual SkString onShortName() SK_OVERRIDE { \
+ SkString onShortName() SK_OVERRIDE { \
return SkString(#NAME); \
} \
}; \
« no previous file with comments | « gm/glyph_pos_align.cpp ('k') | gm/gmmain.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698