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

Unified Diff: src/animator/SkDisplayEvent.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/SkDisplayBounds.h ('k') | src/animator/SkDisplayInclude.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/animator/SkDisplayEvent.h
diff --git a/src/animator/SkDisplayEvent.h b/src/animator/SkDisplayEvent.h
index 952faeac6349b67c2c8f84c5b222a3f6087176ef..92eb8cf2e92460c6b219d004b0ee33c88e712b85 100644
--- a/src/animator/SkDisplayEvent.h
+++ b/src/animator/SkDisplayEvent.h
@@ -35,16 +35,16 @@ class SkDisplayEvent : public SkDisplayable {
SkDisplayEvent();
virtual ~SkDisplayEvent();
virtual bool addChild(SkAnimateMaker& , SkDisplayable* child) SK_OVERRIDE;
- virtual bool contains(SkDisplayable*);
- virtual SkDisplayable* contains(const SkString& );
+ virtual bool contains(SkDisplayable*) SK_OVERRIDE;
+ virtual SkDisplayable* contains(const SkString& ) SK_OVERRIDE;
#ifdef SK_DEBUG
void dumpEvent(SkAnimateMaker* );
#endif
bool enableEvent(SkAnimateMaker& );
- virtual bool getProperty(int index, SkScriptValue* ) const;
- virtual void onEndElement(SkAnimateMaker& maker);
+ virtual bool getProperty(int index, SkScriptValue* ) const SK_OVERRIDE;
+ virtual void onEndElement(SkAnimateMaker& maker) SK_OVERRIDE;
void populateInput(SkAnimateMaker& , const SkEvent& fEvent);
- virtual bool setProperty(int index, SkScriptValue& );
+ virtual bool setProperty(int index, SkScriptValue& ) SK_OVERRIDE;
protected:
SkKey code;
SkBool disable;
« no previous file with comments | « src/animator/SkDisplayBounds.h ('k') | src/animator/SkDisplayInclude.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698