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: Source/core/svg/SVGTransformList.cpp

Issue 61753005: Remove SVGLocatable and SVGTransformable (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix nits Created 7 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/SVGTransformList.cpp
diff --git a/Source/core/svg/SVGTransformList.cpp b/Source/core/svg/SVGTransformList.cpp
index 76b94a86b959f8376df9fb2c235622edaab11ba0..f749b871b43b25d4dd2e1d6f7268f8650d6eb1a1 100644
--- a/Source/core/svg/SVGTransformList.cpp
+++ b/Source/core/svg/SVGTransformList.cpp
@@ -21,9 +21,9 @@
#include "config.h"
#include "core/svg/SVGTransformList.h"
+#include "core/svg/SVGParserUtilities.h"
#include "core/svg/SVGSVGElement.h"
#include "core/svg/SVGTransform.h"
-#include "core/svg/SVGTransformable.h"
#include "platform/transforms/AffineTransform.h"
#include "wtf/text/StringBuilder.h"
@@ -83,12 +83,12 @@ void SVGTransformList::parse(const String& transform)
} else if (transform.is8Bit()) {
const LChar* ptr = transform.characters8();
const LChar* end = ptr + transform.length();
- if (!SVGTransformable::parseTransformAttribute(*this, ptr, end))
+ if (!parseTransformAttribute(*this, ptr, end))
clear();
} else {
const UChar* ptr = transform.characters16();
const UChar* end = ptr + transform.length();
- if (!SVGTransformable::parseTransformAttribute(*this, ptr, end))
+ if (!parseTransformAttribute(*this, ptr, end))
clear();
}
}

Powered by Google App Engine
This is Rietveld 408576698