aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-07-28 09:35:19 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-28 09:35:19 -0700
commit3073b5fabe5af86afa9bae6e644f6cc515e6c438 (patch)
tree53e86335f67df4965f3abd9993e027ab7864f819 /src
parent0341b4427e5f037e3b501ed6e57dfdb7b40f150e (diff)
Fix a stray -Winconsistent-missing-override warning.
TBR= BUG=skia: Review URL: https://codereview.chromium.org/1261043002
Diffstat (limited to 'src')
-rw-r--r--src/animator/SkDump.h6
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
};