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

Unified Diff: third_party/WebKit/Source/core/svg/SVGPathBlender.cpp

Issue 1646543004: Refactor away SVGPathSource (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use namespace Created 4 years, 11 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: third_party/WebKit/Source/core/svg/SVGPathBlender.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGPathBlender.cpp b/third_party/WebKit/Source/core/svg/SVGPathBlender.cpp
index 279122ed9ce48d1024799c5fabd070ffc720e8ee..717de9d67805ba2448f9c34684be09b086ec473d 100644
--- a/third_party/WebKit/Source/core/svg/SVGPathBlender.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGPathBlender.cpp
@@ -19,9 +19,9 @@
#include "core/svg/SVGPathBlender.h"
+#include "core/svg/SVGPathByteStreamSource.h"
#include "core/svg/SVGPathConsumer.h"
#include "core/svg/SVGPathData.h"
-#include "core/svg/SVGPathSource.h"
#include "platform/animation/AnimationUtilities.h"
namespace blink {
@@ -255,7 +255,7 @@ bool SVGPathBlender::BlendState::blendSegments(const PathSegmentData& fromSeg, c
return true;
}
-SVGPathBlender::SVGPathBlender(SVGPathSource* fromSource, SVGPathSource* toSource, SVGPathConsumer* consumer)
+SVGPathBlender::SVGPathBlender(SVGPathByteStreamSource* fromSource, SVGPathByteStreamSource* toSource, SVGPathConsumer* consumer)
: m_fromSource(fromSource)
, m_toSource(toSource)
, m_consumer(consumer)
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGPathBlender.h ('k') | third_party/WebKit/Source/core/svg/SVGPathBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698