| Index: Source/core/svg/SVGGeometryElement.h
|
| diff --git a/Source/core/svg/SVGGeometryElement.h b/Source/core/svg/SVGGeometryElement.h
|
| index 09fffa51344286a035962923ccd7be83e45515d6..a4cf565d49d5bb6e4673a832a0f8ed640d7592ad 100644
|
| --- a/Source/core/svg/SVGGeometryElement.h
|
| +++ b/Source/core/svg/SVGGeometryElement.h
|
| @@ -32,14 +32,15 @@
|
| #define SVGGeometryElement_h
|
|
|
| #include "core/svg/SVGGraphicsElement.h"
|
| -#include "core/svg/SVGPoint.h"
|
|
|
| namespace WebCore {
|
|
|
| +class SVGPointTearOff;
|
| +
|
| class SVGGeometryElement : public SVGGraphicsElement {
|
| public:
|
| - bool isPointInFill(const SVGPoint&) const;
|
| - bool isPointInStroke(const SVGPoint&) const;
|
| + bool isPointInFill(PassRefPtr<SVGPointTearOff>) const;
|
| + bool isPointInStroke(PassRefPtr<SVGPointTearOff>) const;
|
|
|
| protected:
|
| SVGGeometryElement(const QualifiedName&, Document&, ConstructionType = CreateSVGElement);
|
|
|