| Index: third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h b/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h
|
| index 568c25f56a0829d09d3b1e775e72897b523c42cf..087d0ec255adfe638471ee684e41512baa8e4d90 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/filters/FilterEffect.h
|
| @@ -128,8 +128,8 @@ public:
|
| void setEffectBoundaries(const FloatRect& effectBoundaries) { m_effectBoundaries = effectBoundaries; }
|
| FloatRect applyEffectBoundaries(const FloatRect&) const;
|
|
|
| - Filter* filter() { return m_filter; }
|
| - const Filter* filter() const { return m_filter; }
|
| + Filter* getFilter() { return m_filter; }
|
| + const Filter* getFilter() const { return m_filter; }
|
|
|
| bool clipsToBounds() const { return m_clipsToBounds; }
|
| void setClipsToBounds(bool value) { m_clipsToBounds = value; }
|
|
|