Chromium Code Reviews| Index: Source/core/svg/SVGPathBlender.h |
| diff --git a/Source/core/svg/SVGPathBlender.h b/Source/core/svg/SVGPathBlender.h |
| index 403dd291e4d05c3500b1a27af70ab46437464fb2..16412f3368f607d0e9b296e492655f3b4aa906ff 100644 |
| --- a/Source/core/svg/SVGPathBlender.h |
| +++ b/Source/core/svg/SVGPathBlender.h |
| @@ -20,9 +20,9 @@ |
| #ifndef SVGPathBlender_h |
| #define SVGPathBlender_h |
| -#include "core/svg/SVGPathConsumer.h" |
| #include "platform/geometry/FloatPoint.h" |
| #include "platform/heap/Handle.h" |
| +#include "wtf/Noncopyable.h" |
| namespace blink { |
| @@ -32,6 +32,7 @@ enum FloatBlendMode { |
| }; |
| struct PathSegmentData; |
| +class SVGPathConsumer; |
| class SVGPathSource; |
| class SVGPathBlender : public NoBaseWillBeGarbageCollectedFinalized<SVGPathBlender> { |
| @@ -67,11 +68,12 @@ private: |
| FloatPoint m_fromCurrentPoint; |
| FloatPoint m_toCurrentPoint; |
| - PathCoordinateMode m_fromMode; |
| - PathCoordinateMode m_toMode; |
| float m_progress; |
| unsigned m_addTypesCount; |
| bool m_isInFirstHalfOfAnimation; |
| + bool m_typesAreEqual; |
|
pdr.
2015/04/01 00:03:49
WDYT about a comment here saying that these 3 bool
fs
2015/04/01 09:15:55
Added comment along those lines.
|
| + bool m_fromIsAbsolute; |
| + bool m_toIsAbsolute; |
| }; |
| } // namespace blink |