| Index: src/animator/SkDrawPaint.h
|
| diff --git a/src/animator/SkDrawPaint.h b/src/animator/SkDrawPaint.h
|
| index b2b5dd626c88f8ef86879936df7191eda19212aa..5ac5a93ea2f512cf638d8219beade757bf95f97d 100644
|
| --- a/src/animator/SkDrawPaint.h
|
| +++ b/src/animator/SkDrawPaint.h
|
| @@ -27,17 +27,17 @@ class SkDrawPaint : public SkADrawable {
|
| SkDrawPaint();
|
| virtual ~SkDrawPaint();
|
| virtual bool add(SkAnimateMaker* , SkDisplayable* child);
|
| - virtual SkDisplayable* deepCopy(SkAnimateMaker* );
|
| - virtual bool draw(SkAnimateMaker& );
|
| + virtual SkDisplayable* deepCopy(SkAnimateMaker* ) SK_OVERRIDE;
|
| + virtual bool draw(SkAnimateMaker& ) SK_OVERRIDE;
|
| #ifdef SK_DUMP_ENABLED
|
| - virtual void dump(SkAnimateMaker* );
|
| + virtual void dump(SkAnimateMaker* ) SK_OVERRIDE;
|
| #endif
|
| virtual void executeFunction(SkDisplayable* target, int index,
|
| SkTDArray<SkScriptValue>& parameters, SkDisplayTypes type,
|
| - SkScriptValue* );
|
| - virtual const SkFunctionParamType* getFunctionsParameters();
|
| - virtual bool getProperty(int index, SkScriptValue* value) const;
|
| - virtual bool resolveIDs(SkAnimateMaker& maker, SkDisplayable* original, SkApply* apply);
|
| + SkScriptValue* ) SK_OVERRIDE;
|
| + virtual const SkFunctionParamType* getFunctionsParameters() SK_OVERRIDE;
|
| + virtual bool getProperty(int index, SkScriptValue* value) const SK_OVERRIDE;
|
| + virtual bool resolveIDs(SkAnimateMaker& maker, SkDisplayable* original, SkApply* apply) SK_OVERRIDE;
|
| protected:
|
| static const SkFunctionParamType fFunctionParameters[];
|
| void setupPaint(SkPaint* paint) const;
|
|
|