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

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

Issue 423093014: [SVG2] Make transform, gradientTransform and patternTransform presentation attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: transform attr syntax should match property, with minor quirks Created 6 years, 5 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
Index: Source/core/svg/SVGGraphicsElement.h
diff --git a/Source/core/svg/SVGGraphicsElement.h b/Source/core/svg/SVGGraphicsElement.h
index 2862402cdd73825ecd7a5493a68f867a1f18f013..c11b782e8ee6ca45cbcb94c496d53a274f694aed 100644
--- a/Source/core/svg/SVGGraphicsElement.h
+++ b/Source/core/svg/SVGGraphicsElement.h
@@ -78,8 +78,11 @@ protected:
virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
RefPtr<SVGAnimatedTransformList> m_transform;
+ virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
+ virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
private:
+
pdr. 2014/08/01 22:43:10 Nit: no need for the extra line.
virtual bool isSVGGraphicsElement() const OVERRIDE FINAL { return true; }
// Used by <animateMotion>

Powered by Google App Engine
This is Rietveld 408576698