Fix a stray -Winconsistent-missing-override warning.

TBR=

BUG=skia:

Review URL: https://codereview.chromium.org/1261043002
This commit is contained in:
mtklein 2015-07-28 09:35:19 -07:00 committed by Commit bot
parent 0341b4427e
commit 3073b5fabe

View File

@ -32,9 +32,9 @@ class SkDump : public SkDisplayable {
SkBool posts;
SkString script;
#else
virtual bool enable(SkAnimateMaker & );
virtual bool hasEnable() const;
virtual bool setProperty(int index, SkScriptValue& );
bool enable(SkAnimateMaker & ) override;
bool hasEnable() const override;
bool setProperty(int index, SkScriptValue& ) override;
#endif
};