| Index: third_party/WebKit/Source/core/svg/SVGPathBlender.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPathBlender.h b/third_party/WebKit/Source/core/svg/SVGPathBlender.h
|
| index a6da8f1f0bae05998214d59b378751ac70738047..7b8c9daaee0ca0b33fe43a3f404ae456484b916d 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPathBlender.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPathBlender.h
|
| @@ -27,13 +27,13 @@ namespace blink {
|
|
|
| struct PathSegmentData;
|
| class SVGPathConsumer;
|
| -class SVGPathSource;
|
| +class SVGPathByteStreamSource;
|
|
|
| class SVGPathBlender final {
|
| WTF_MAKE_NONCOPYABLE(SVGPathBlender);
|
| STACK_ALLOCATED();
|
| public:
|
| - SVGPathBlender(SVGPathSource* fromSource, SVGPathSource* toSource, SVGPathConsumer*);
|
| + SVGPathBlender(SVGPathByteStreamSource* fromSource, SVGPathByteStreamSource* toSource, SVGPathConsumer*);
|
|
|
| bool addAnimatedPath(unsigned repeatCount);
|
| bool blendAnimatedPath(float);
|
| @@ -42,8 +42,8 @@ private:
|
| class BlendState;
|
| bool blendAnimatedPath(BlendState&);
|
|
|
| - SVGPathSource* m_fromSource;
|
| - SVGPathSource* m_toSource;
|
| + SVGPathByteStreamSource* m_fromSource;
|
| + SVGPathByteStreamSource* m_toSource;
|
| SVGPathConsumer* m_consumer;
|
| };
|
|
|
|
|