| Index: include/effects/SkOffsetImageFilter.h
|
| diff --git a/include/effects/SkOffsetImageFilter.h b/include/effects/SkOffsetImageFilter.h
|
| index 818869171aedef1c55ad6b648a96b5e45084c27f..17c9627f83e6f4263de78289e88f5c1c304356dd 100644
|
| --- a/include/effects/SkOffsetImageFilter.h
|
| +++ b/include/effects/SkOffsetImageFilter.h
|
| @@ -22,17 +22,17 @@ public:
|
| }
|
| return SkNEW_ARGS(SkOffsetImageFilter, (dx, dy, input, cropRect));
|
| }
|
| - void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVERRIDE;
|
| + void computeFastBounds(const SkRect& src, SkRect* dst) const override;
|
| SK_TO_STRING_OVERRIDE()
|
| SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter)
|
|
|
| protected:
|
| SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const CropRect* cropRect);
|
| - void flatten(SkWriteBuffer&) const SK_OVERRIDE;
|
| + void flatten(SkWriteBuffer&) const override;
|
|
|
| virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
|
| - SkBitmap* result, SkIPoint* loc) const SK_OVERRIDE;
|
| - bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const SK_OVERRIDE;
|
| + SkBitmap* result, SkIPoint* loc) const override;
|
| + bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const override;
|
|
|
| private:
|
| SkVector fOffset;
|
|
|