Index: src/animator/SkDisplayEvent.h |
diff --git a/src/animator/SkDisplayEvent.h b/src/animator/SkDisplayEvent.h |
index 92eb8cf2e92460c6b219d004b0ee33c88e712b85..4da49b989fb2439d2987b8e030b65e6a9ce3bc7e 100644 |
--- a/src/animator/SkDisplayEvent.h |
+++ b/src/animator/SkDisplayEvent.h |
@@ -34,17 +34,17 @@ class SkDisplayEvent : public SkDisplayable { |
}; |
SkDisplayEvent(); |
virtual ~SkDisplayEvent(); |
- virtual bool addChild(SkAnimateMaker& , SkDisplayable* child) SK_OVERRIDE; |
- virtual bool contains(SkDisplayable*) SK_OVERRIDE; |
- virtual SkDisplayable* contains(const SkString& ) SK_OVERRIDE; |
+ bool addChild(SkAnimateMaker& , SkDisplayable* child) SK_OVERRIDE; |
+ bool contains(SkDisplayable*) SK_OVERRIDE; |
+ SkDisplayable* contains(const SkString& ) SK_OVERRIDE; |
#ifdef SK_DEBUG |
void dumpEvent(SkAnimateMaker* ); |
#endif |
bool enableEvent(SkAnimateMaker& ); |
- virtual bool getProperty(int index, SkScriptValue* ) const SK_OVERRIDE; |
- virtual void onEndElement(SkAnimateMaker& maker) SK_OVERRIDE; |
+ bool getProperty(int index, SkScriptValue* ) const SK_OVERRIDE; |
+ void onEndElement(SkAnimateMaker& maker) SK_OVERRIDE; |
void populateInput(SkAnimateMaker& , const SkEvent& fEvent); |
- virtual bool setProperty(int index, SkScriptValue& ) SK_OVERRIDE; |
+ bool setProperty(int index, SkScriptValue& ) SK_OVERRIDE; |
protected: |
SkKey code; |
SkBool disable; |