diff options
author | senorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-02-05 23:23:39 +0000 |
---|---|---|
committer | senorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-02-05 23:23:39 +0000 |
commit | e629c7bc9f822351c39be99444839481083ee17f (patch) | |
tree | 2230d79fd516a7bfab284f790d6e3d9c15f2f5d8 /include/device | |
parent | 0937335e6b051150e9a42fc685659bac570b0c51 (diff) |
Fix SkXPSDevice
Make SkImageFilter parameter for SkXPSDevice::allowImageFilter const to match
the SkBitmapDevice base class.
BUG=skia:2097
R=senorblanco@chromium.org
Review URL: https://codereview.chromium.org/156213002
git-svn-id: http://skia.googlecode.com/svn/trunk@13333 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/device')
-rw-r--r-- | include/device/xps/SkXPSDevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/device/xps/SkXPSDevice.h b/include/device/xps/SkXPSDevice.h index e79081c4e8..13ae83492f 100644 --- a/include/device/xps/SkXPSDevice.h +++ b/include/device/xps/SkXPSDevice.h @@ -148,7 +148,7 @@ protected: int y, SkCanvas::Config8888) SK_OVERRIDE; - virtual bool allowImageFilter(SkImageFilter*) SK_OVERRIDE; + virtual bool allowImageFilter(const SkImageFilter*) SK_OVERRIDE; private: class TypefaceUse : ::SkNoncopyable { |