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

Unified Diff: samplecode/GMSampleView.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 | « samplecode/ClockFaceView.cpp ('k') | samplecode/OverView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samplecode/GMSampleView.h
diff --git a/samplecode/GMSampleView.h b/samplecode/GMSampleView.h
index f97ce92d2b25b97039d852fba43f63f717ccd7c5..4d291902307aeb3675ab8a42957d1b22db8168bf 100644
--- a/samplecode/GMSampleView.h
+++ b/samplecode/GMSampleView.h
@@ -23,11 +23,11 @@ public:
static SkEvent* NewShowSizeEvt(bool doShowSize);
protected:
- bool onQuery(SkEvent*) SK_OVERRIDE;
- bool onEvent(const SkEvent&) SK_OVERRIDE;
- void onDrawContent(SkCanvas*) SK_OVERRIDE;
- void onDrawBackground(SkCanvas*) SK_OVERRIDE;
- bool onAnimate(const SkAnimTimer&) SK_OVERRIDE;
+ bool onQuery(SkEvent*) override;
+ bool onEvent(const SkEvent&) override;
+ void onDrawContent(SkCanvas*) override;
+ void onDrawBackground(SkCanvas*) override;
+ bool onAnimate(const SkAnimTimer&) override;
private:
GM* fGM;
« no previous file with comments | « samplecode/ClockFaceView.cpp ('k') | samplecode/OverView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698