Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(738)

Unified Diff: Source/core/svg/SVGGeometryElement.h

Issue 132233016: [SVG] SVGAnimatedPointList migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: set NeedsRebaseline Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGAnimatorFactory.h ('k') | Source/core/svg/SVGGeometryElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/core/svg/SVGAnimatorFactory.h ('k') | Source/core/svg/SVGGeometryElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698