 Chromium Code Reviews
 Chromium Code Reviews Issue 423093014:
  [SVG2] Make transform, gradientTransform and patternTransform presentation attributes.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 423093014:
  [SVG2] Make transform, gradientTransform and patternTransform presentation attributes.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| 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> |