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

Unified Diff: src/animator/SkDrawRectangle.h

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 | « src/animator/SkDrawOval.h ('k') | src/animator/SkDump.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/animator/SkDrawRectangle.h
diff --git a/src/animator/SkDrawRectangle.h b/src/animator/SkDrawRectangle.h
index 42af02b1e7197e438d9de3d90f8b1ebce68ef3da..a9fb884b0aae06bd3cf57eb55b90576371d3f57f 100644
--- a/src/animator/SkDrawRectangle.h
+++ b/src/animator/SkDrawRectangle.h
@@ -19,15 +19,15 @@ class SkRectToRect;
class SkDrawRect : public SkBoundable {
DECLARE_DRAW_MEMBER_INFO(Rect);
SkDrawRect();
- virtual void dirty();
- virtual bool draw(SkAnimateMaker& );
+ virtual void dirty() SK_OVERRIDE;
+ virtual bool draw(SkAnimateMaker& ) SK_OVERRIDE;
#ifdef SK_DUMP_ENABLED
- virtual void dump(SkAnimateMaker* );
+ virtual void dump(SkAnimateMaker* ) SK_OVERRIDE;
#endif
- virtual SkDisplayable* getParent() const;
- virtual bool getProperty(int index, SkScriptValue* value) const;
- virtual bool setParent(SkDisplayable* parent);
- virtual bool setProperty(int index, SkScriptValue& );
+ virtual SkDisplayable* getParent() const SK_OVERRIDE;
+ virtual bool getProperty(int index, SkScriptValue* value) const SK_OVERRIDE;
+ virtual bool setParent(SkDisplayable* parent) SK_OVERRIDE;
+ virtual bool setProperty(int index, SkScriptValue& ) SK_OVERRIDE;
protected:
SkRect fRect;
SkDisplayable* fParent;
@@ -41,9 +41,9 @@ private:
class SkRoundRect : public SkDrawRect {
DECLARE_MEMBER_INFO(RoundRect);
SkRoundRect();
- virtual bool draw(SkAnimateMaker& );
+ virtual bool draw(SkAnimateMaker& ) SK_OVERRIDE;
#ifdef SK_DUMP_ENABLED
- virtual void dump(SkAnimateMaker* );
+ virtual void dump(SkAnimateMaker* ) SK_OVERRIDE;
#endif
protected:
SkScalar rx;
« no previous file with comments | « src/animator/SkDrawOval.h ('k') | src/animator/SkDump.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698