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

Unified Diff: include/views/SkWidget.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 | « include/views/SkOSWindow_Unix.h ('k') | include/xml/SkXMLWriter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/views/SkWidget.h
diff --git a/include/views/SkWidget.h b/include/views/SkWidget.h
index 28f0e9a047445b44a8cae10b6b09f17ba184ab65..3c9363440b5045a6aaf7ce8494324a7675136680 100644
--- a/include/views/SkWidget.h
+++ b/include/views/SkWidget.h
@@ -101,10 +101,10 @@ public:
SkPushButtonWidget(uint32_t flags = 0) : SkButtonWidget(flags) {}
protected:
- bool onEvent(const SkEvent&) SK_OVERRIDE;
- void onDraw(SkCanvas*) SK_OVERRIDE;
- Click* onFindClickHandler(SkScalar x, SkScalar y, unsigned modi) SK_OVERRIDE;
- bool onClick(Click* click) SK_OVERRIDE;
+ bool onEvent(const SkEvent&) override;
+ void onDraw(SkCanvas*) override;
+ Click* onFindClickHandler(SkScalar x, SkScalar y, unsigned modi) override;
+ bool onClick(Click* click) override;
private:
typedef SkButtonWidget INHERITED;
« no previous file with comments | « include/views/SkOSWindow_Unix.h ('k') | include/xml/SkXMLWriter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698