| Index: include/effects/SkDiscretePathEffect.h
|
| diff --git a/include/effects/SkDiscretePathEffect.h b/include/effects/SkDiscretePathEffect.h
|
| index ea44d654cf0a99dfa5f6150e6fd576e1238a1c6b..d05d181de0d9ee0ef5e1b1cfbb9c0dc8ebb33733 100644
|
| --- a/include/effects/SkDiscretePathEffect.h
|
| +++ b/include/effects/SkDiscretePathEffect.h
|
| @@ -37,20 +37,20 @@ public:
|
| }
|
|
|
| virtual bool filterPath(SkPath* dst, const SkPath& src,
|
| - SkStrokeRec*, const SkRect*) const SK_OVERRIDE;
|
| + SkStrokeRec*, const SkRect*) const override;
|
|
|
| SK_TO_STRING_OVERRIDE()
|
| SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDiscretePathEffect)
|
|
|
| #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
|
| - bool exposedInAndroidJavaAPI() const SK_OVERRIDE { return true; }
|
| + bool exposedInAndroidJavaAPI() const override { return true; }
|
| #endif
|
|
|
| protected:
|
| SkDiscretePathEffect(SkScalar segLength,
|
| SkScalar deviation,
|
| uint32_t seedAssist);
|
| - void flatten(SkWriteBuffer&) const SK_OVERRIDE;
|
| + void flatten(SkWriteBuffer&) const override;
|
|
|
| private:
|
| SkScalar fSegLength, fPerterb;
|
|
|