Chromium Code Reviews| Index: include/effects/SkBlurImageFilter.h |
| diff --git a/include/effects/SkBlurImageFilter.h b/include/effects/SkBlurImageFilter.h |
| index e7d0db3c381f505fc04cc6e92c149a0a7a59182f..2206fc564b2145c729896ddc97d103919a14afbc 100644 |
| --- a/include/effects/SkBlurImageFilter.h |
| +++ b/include/effects/SkBlurImageFilter.h |
| @@ -25,6 +25,10 @@ public: |
| SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBlurImageFilter) |
| protected: |
| + SkBlurImageFilter(SkScalar sigmaX, |
| + SkScalar sigmaY, |
| + SkImageFilter* input = NULL, |
|
scroggo
2014/05/15 14:56:42
Defaults not needed.
|
| + const CropRect* cropRect = NULL); |
| explicit SkBlurImageFilter(SkReadBuffer& buffer); |
| virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; |
| @@ -37,14 +41,6 @@ protected: |
| virtual bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx, |
| SkBitmap* result, SkIPoint* offset) const SK_OVERRIDE; |
| -#ifdef SK_SUPPORT_LEGACY_PUBLICEFFECTCONSTRUCTORS |
| -public: |
| -#endif |
| - SkBlurImageFilter(SkScalar sigmaX, |
| - SkScalar sigmaY, |
| - SkImageFilter* input = NULL, |
| - const CropRect* cropRect = NULL); |
| - |
| private: |
| SkSize fSigma; |
| typedef SkImageFilter INHERITED; |