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

Unified Diff: src/animator/SkDrawTextBox.h

Issue 831113002: Cleanup: More override fixes - another round. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 months 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/SkDrawText.h ('k') | src/animator/SkDrawTo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/animator/SkDrawTextBox.h
diff --git a/src/animator/SkDrawTextBox.h b/src/animator/SkDrawTextBox.h
index 6155befb299a73876e2016a983feb8ac40806575..4fa0872c9faea86a747c36a067736b2e6050d244 100644
--- a/src/animator/SkDrawTextBox.h
+++ b/src/animator/SkDrawTextBox.h
@@ -18,12 +18,12 @@ class SkDrawTextBox : public SkDrawRect {
SkDrawTextBox();
// overrides
- virtual bool draw(SkAnimateMaker& );
+ virtual bool draw(SkAnimateMaker& ) SK_OVERRIDE;
#ifdef SK_DUMP_ENABLED
- virtual void dump(SkAnimateMaker* );
+ virtual void dump(SkAnimateMaker* ) SK_OVERRIDE;
#endif
- virtual bool getProperty(int index, SkScriptValue* value) const;
- virtual bool setProperty(int index, SkScriptValue& );
+ virtual bool getProperty(int index, SkScriptValue* value) const SK_OVERRIDE;
+ virtual bool setProperty(int index, SkScriptValue& ) SK_OVERRIDE;
private:
SkString fText;
« no previous file with comments | « src/animator/SkDrawText.h ('k') | src/animator/SkDrawTo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698