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

Unified Diff: gm/gm.h

Issue 1037793002: C++11 override should now be supported by all of {bots,Chrome,Android,Mozilla} (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: git cl web Created 5 years, 9 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/gm_expectations.h » ('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 e263528f90c7827e4e5ad6b188a95b7ad341091e..87ad92722a782c891e71c2c5db507bd7122e8125 100644
--- a/gm/gm.h
+++ b/gm/gm.h
@@ -126,9 +126,9 @@ namespace skiagm {
const SkISize& size)
: fName(name), fDrawProc(drawProc), fSize(size) {}
protected:
- void onDraw(SkCanvas* canvas) SK_OVERRIDE;
- SkISize onISize() SK_OVERRIDE;
- SkString onShortName() SK_OVERRIDE;
+ void onDraw(SkCanvas* canvas) override;
+ SkISize onISize() override;
+ SkString onShortName() override;
private:
SkString fName;
void (*fDrawProc)(SkCanvas*);
« no previous file with comments | « gm/glyph_pos_align.cpp ('k') | gm/gm_expectations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698