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

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

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
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/svg/SVGPathBlender.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/svg/SVGPathBlender.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698