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

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

Issue 734053005: Remove globalSVGPath* from SVGPathUtilities.cpp (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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/SVGPathBlender.h
diff --git a/Source/core/svg/SVGPathBlender.h b/Source/core/svg/SVGPathBlender.h
index 414e9f5f56bd74d7ed929d9d618a7edc9331aba3..33cb79714abe908e36715537fbd9c31d2634a0f9 100644
--- a/Source/core/svg/SVGPathBlender.h
+++ b/Source/core/svg/SVGPathBlender.h
@@ -35,11 +35,10 @@ class SVGPathSource;
class SVGPathBlender : public NoBaseWillBeGarbageCollectedFinalized<SVGPathBlender> {
WTF_MAKE_NONCOPYABLE(SVGPathBlender); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
- SVGPathBlender();
+ SVGPathBlender(SVGPathSource* fromSource, SVGPathSource* toSource, SVGPathConsumer*);
f(malita) 2014/11/24 16:56:57 I think the sources should be const&, but AFAICT t
- bool addAnimatedPath(SVGPathSource*, SVGPathSource*, SVGPathConsumer*, unsigned repeatCount);
- bool blendAnimatedPath(float, SVGPathSource*, SVGPathSource*, SVGPathConsumer*);
- void cleanup();
+ bool addAnimatedPath(unsigned repeatCount);
+ bool blendAnimatedPath(float);
void trace(Visitor*);

Powered by Google App Engine
This is Rietveld 408576698