diff options
author | mtklein <mtklein@chromium.org> | 2015-07-28 09:35:19 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-28 09:35:19 -0700 |
commit | 3073b5fabe5af86afa9bae6e644f6cc515e6c438 (patch) | |
tree | 53e86335f67df4965f3abd9993e027ab7864f819 /src/animator | |
parent | 0341b4427e5f037e3b501ed6e57dfdb7b40f150e (diff) |
Fix a stray -Winconsistent-missing-override warning.
TBR=
BUG=skia:
Review URL: https://codereview.chromium.org/1261043002
Diffstat (limited to 'src/animator')
-rw-r--r-- | src/animator/SkDump.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/animator/SkDump.h b/src/animator/SkDump.h index bedd5331e5..bcf19fd9af 100644 --- a/src/animator/SkDump.h +++ b/src/animator/SkDump.h @@ -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 }; |