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

Unified Diff: Source/core/svg/SVGPathSegListBuilder.cpp

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/SVGPathSegListBuilder.cpp
diff --git a/Source/core/svg/SVGPathSegListBuilder.cpp b/Source/core/svg/SVGPathSegListBuilder.cpp
index 7a4afb3ee325e2c3d695ee83afd35d9e6c9613fa..be7098e545e59c158b53b17594ff32599140eedb 100644
--- a/Source/core/svg/SVGPathSegListBuilder.cpp
+++ b/Source/core/svg/SVGPathSegListBuilder.cpp
@@ -22,7 +22,6 @@
*/
#include "config.h"
-
#include "core/svg/SVGPathSegListBuilder.h"
#include "core/dom/ExceptionCode.h"
@@ -49,9 +48,9 @@
namespace blink {
-SVGPathSegListBuilder::SVGPathSegListBuilder()
- : m_pathElement(nullptr)
- , m_pathSegList(nullptr)
+SVGPathSegListBuilder::SVGPathSegListBuilder(SVGPathElement* pathElement, PassRefPtrWillBeRawPtr<SVGPathSegList> pathSegList)
+ : m_pathElement(pathElement)
+ , m_pathSegList(pathSegList)
{
}

Powered by Google App Engine
This is Rietveld 408576698