Index: src/animator/SkDrawRectangle.h |
diff --git a/src/animator/SkDrawRectangle.h b/src/animator/SkDrawRectangle.h |
index a9fb884b0aae06bd3cf57eb55b90576371d3f57f..44ed7c477dc7875d5c2e511b9c3d9699e1744181 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() SK_OVERRIDE; |
- virtual bool draw(SkAnimateMaker& ) SK_OVERRIDE; |
+ void dirty() SK_OVERRIDE; |
+ bool draw(SkAnimateMaker& ) SK_OVERRIDE; |
#ifdef SK_DUMP_ENABLED |
- virtual void dump(SkAnimateMaker* ) SK_OVERRIDE; |
+ void dump(SkAnimateMaker* ) SK_OVERRIDE; |
#endif |
- 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; |
+ SkDisplayable* getParent() const SK_OVERRIDE; |
+ bool getProperty(int index, SkScriptValue* value) const SK_OVERRIDE; |
+ bool setParent(SkDisplayable* parent) SK_OVERRIDE; |
+ 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& ) SK_OVERRIDE; |
+ bool draw(SkAnimateMaker& ) SK_OVERRIDE; |
#ifdef SK_DUMP_ENABLED |
- virtual void dump(SkAnimateMaker* ) SK_OVERRIDE; |
+ void dump(SkAnimateMaker* ) SK_OVERRIDE; |
#endif |
protected: |
SkScalar rx; |