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

Unified Diff: third_party/WebKit/Source/core/svg/SVGPathElement.h

Issue 1439793003: SVG: Promote d to a property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DECLARE_VIRTUAL_TRACE Created 5 years 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
Index: third_party/WebKit/Source/core/svg/SVGPathElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGPathElement.h b/third_party/WebKit/Source/core/svg/SVGPathElement.h
index 2a55d5935af746cb07dd5a261876b2ebaf59880d..bbd00b0cc17e1ac9d190d1df36f0538964bd9d54 100644
--- a/third_party/WebKit/Source/core/svg/SVGPathElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGPathElement.h
@@ -43,6 +43,11 @@ public:
SVGAnimatedPath* path() { return m_path.get(); }
SVGAnimatedNumber* pathLength() { return m_pathLength.get(); }
+ const SVGPathByteStream& pathByteStream() const;
+
+ bool isPresentationAttribute(const QualifiedName&) const override;
+ bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override;
+
DECLARE_VIRTUAL_TRACE();
private:
@@ -50,6 +55,8 @@ private:
void svgAttributeChanged(const QualifiedName&) override;
+ void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
+
Node::InsertionNotificationRequest insertedInto(ContainerNode*) override;
void removedFrom(ContainerNode* insertionPoint, Node* next) override;

Powered by Google App Engine
This is Rietveld 408576698