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

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

Issue 672853002: Implement "auto -> angle" animation on <marker> orient attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/SVGAngle.h
diff --git a/Source/core/svg/SVGAngle.h b/Source/core/svg/SVGAngle.h
index 2527847db514d0da939a513cac6c0a0299039f4b..d935d0868972916b7675bf84f94832a9f141827d 100644
--- a/Source/core/svg/SVGAngle.h
+++ b/Source/core/svg/SVGAngle.h
@@ -93,6 +93,7 @@ public:
void convertToSpecifiedUnits(SVGAngleType unitType, ExceptionState&);
SVGEnumeration<SVGMarkerOrientType>* orientType() { return m_orientType.get(); }
+ const SVGEnumeration<SVGMarkerOrientType>* orientType() const { return m_orientType.get(); }
void orientTypeChanged();
// SVGPropertyBase:
@@ -112,6 +113,8 @@ private:
SVGAngle();
SVGAngle(SVGAngleType, float, SVGMarkerOrientType);
+ void assign(const SVGAngle&);
+
SVGAngleType m_unitType;
float m_valueInSpecifiedUnits;
RefPtr<SVGMarkerOrientEnumeration> m_orientType;
« no previous file with comments | « LayoutTests/svg/animations/animate-marker-orient-from-auto-to-angle-expected.txt ('k') | Source/core/svg/SVGAngle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698