| Index: third_party/WebKit/Source/platform/graphics/filters/FilterOperations.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/filters/FilterOperations.h b/third_party/WebKit/Source/platform/graphics/filters/FilterOperations.h
|
| index 758d67e174df9845ee47ce3e9ddf9bdc95a57a34..e5fc555142a2ec4c938b400cd4bc518b9e6ac4c4 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/filters/FilterOperations.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/filters/FilterOperations.h
|
| @@ -34,8 +34,6 @@
|
|
|
| namespace blink {
|
|
|
| -typedef IntRectOutsets FilterOutsets;
|
| -
|
| class PLATFORM_EXPORT FilterOperations {
|
| DISALLOW_NEW();
|
| public:
|
| @@ -66,8 +64,10 @@ public:
|
|
|
| bool canInterpolateWith(const FilterOperations&) const;
|
|
|
| - bool hasOutsets() const;
|
| - FilterOutsets outsets() const;
|
| + // Maps "forward" to determine which pixels in a destination rect are
|
| + // affected by pixels in the source rect.
|
| + // See also FilterEffect::mapRect.
|
| + FloatRect mapRect(const FloatRect&) const;
|
|
|
| bool hasFilterThatAffectsOpacity() const;
|
| bool hasFilterThatMovesPixels() const;
|
|
|