summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/SVGGeometryElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/SVGGeometryElement.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/SVGGeometryElement.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/SVGGeometryElement.h b/chromium/third_party/WebKit/Source/core/svg/SVGGeometryElement.h
index 09fffa51344..a4cf565d49d 100644
--- a/chromium/third_party/WebKit/Source/core/svg/SVGGeometryElement.h
+++ b/chromium/third_party/WebKit/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);