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

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

Issue 22572005: Remove all uses of the ASCIILiteral class. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rm it from wtf Created 7 years, 4 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/svg/SVGAngle.cpp ('k') | Source/core/xml/XMLHttpRequest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGTransform.cpp
diff --git a/Source/core/svg/SVGTransform.cpp b/Source/core/svg/SVGTransform.cpp
index 18324a8c004709f9091dc27d46bb1d6c95584f92..2c44d366e551078c574521a5654ba8689b563988 100644
--- a/Source/core/svg/SVGTransform.cpp
+++ b/Source/core/svg/SVGTransform.cpp
@@ -133,27 +133,27 @@ const String& SVGTransform::transformTypePrefixForParsing(SVGTransformType type)
case SVG_TRANSFORM_UNKNOWN:
return emptyString();
case SVG_TRANSFORM_MATRIX: {
- DEFINE_STATIC_LOCAL(String, matrixString, (ASCIILiteral("matrix(")));
+ DEFINE_STATIC_LOCAL(String, matrixString, ("matrix("));
return matrixString;
}
case SVG_TRANSFORM_TRANSLATE: {
- DEFINE_STATIC_LOCAL(String, translateString, (ASCIILiteral("translate(")));
+ DEFINE_STATIC_LOCAL(String, translateString, ("translate("));
return translateString;
}
case SVG_TRANSFORM_SCALE: {
- DEFINE_STATIC_LOCAL(String, scaleString, (ASCIILiteral("scale(")));
+ DEFINE_STATIC_LOCAL(String, scaleString, ("scale("));
return scaleString;
}
case SVG_TRANSFORM_ROTATE: {
- DEFINE_STATIC_LOCAL(String, rotateString, (ASCIILiteral("rotate(")));
+ DEFINE_STATIC_LOCAL(String, rotateString, ("rotate("));
return rotateString;
}
case SVG_TRANSFORM_SKEWX: {
- DEFINE_STATIC_LOCAL(String, skewXString, (ASCIILiteral("skewX(")));
+ DEFINE_STATIC_LOCAL(String, skewXString, ("skewX("));
return skewXString;
}
case SVG_TRANSFORM_SKEWY: {
- DEFINE_STATIC_LOCAL(String, skewYString, (ASCIILiteral("skewY(")));
+ DEFINE_STATIC_LOCAL(String, skewYString, ("skewY("));
return skewYString;
}
}
« no previous file with comments | « Source/core/svg/SVGAngle.cpp ('k') | Source/core/xml/XMLHttpRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698