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

Unified Diff: Source/core/rendering/svg/SVGTextLayoutAttributes.cpp

Issue 613843002: Clean up SVG rendering API (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 | « Source/core/rendering/svg/SVGTextLayoutAttributes.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/SVGTextLayoutAttributes.cpp
diff --git a/Source/core/rendering/svg/SVGTextLayoutAttributes.cpp b/Source/core/rendering/svg/SVGTextLayoutAttributes.cpp
index f5d2dcd1995ccb96090ab501f2e0877775da7265..85c9aeef87c6365a93bb563254cb71bb6bf581d3 100644
--- a/Source/core/rendering/svg/SVGTextLayoutAttributes.cpp
+++ b/Source/core/rendering/svg/SVGTextLayoutAttributes.cpp
@@ -43,33 +43,4 @@ float SVGTextLayoutAttributes::emptyValue()
return s_emptyValue;
}
-static inline void dumpSVGCharacterDataMapValue(const char* identifier, float value, bool appendSpace = true)
-{
- if (value == SVGTextLayoutAttributes::emptyValue()) {
- fprintf(stderr, "%s=x", identifier);
- if (appendSpace)
- fprintf(stderr, " ");
- return;
- }
- fprintf(stderr, "%s=%lf", identifier, value);
- if (appendSpace)
- fprintf(stderr, " ");
-}
-
-void SVGTextLayoutAttributes::dump() const
-{
- fprintf(stderr, "context: %p\n", m_context);
- const SVGCharacterDataMap::const_iterator end = m_characterDataMap.end();
- for (SVGCharacterDataMap::const_iterator it = m_characterDataMap.begin(); it != end; ++it) {
- const SVGCharacterData& data = it->value;
- fprintf(stderr, " ---> pos=%i, data={", it->key);
- dumpSVGCharacterDataMapValue("x", data.x);
- dumpSVGCharacterDataMapValue("y", data.y);
- dumpSVGCharacterDataMapValue("dx", data.dx);
- dumpSVGCharacterDataMapValue("dy", data.dy);
- dumpSVGCharacterDataMapValue("rotate", data.rotate, false);
- fprintf(stderr, "}\n");
- }
-}
-
}
« no previous file with comments | « Source/core/rendering/svg/SVGTextLayoutAttributes.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698