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

Unified Diff: Source/core/css/CSSBasicShapes.cpp

Issue 482753002: Use StringBuilder::appendLiteral() / StringBuilder::append(char) when possible (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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/bindings/core/v8/ExceptionMessages.h ('k') | Source/core/css/CSSCalculationValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSBasicShapes.cpp
diff --git a/Source/core/css/CSSBasicShapes.cpp b/Source/core/css/CSSBasicShapes.cpp
index 7f7644d0b39cdad79bfccda180021a0e5e48933e..d49bcad450d327d573bf09d72360de2f10eb3979 100644
--- a/Source/core/css/CSSBasicShapes.cpp
+++ b/Source/core/css/CSSBasicShapes.cpp
@@ -59,7 +59,7 @@ static String buildCircleString(const String& radius, const String& centerX, con
result.appendLiteral(separator);
result.append(centerY);
}
- result.append(")");
+ result.append(')');
if (box.length()) {
result.appendLiteral(separator);
result.append(box);
@@ -171,7 +171,7 @@ static String buildEllipseString(const String& radiusX, const String& radiusY, c
result.appendLiteral(separator);
result.append(centerY);
}
- result.append(")");
+ result.append(')');
if (box.length()) {
result.appendLiteral(separator);
result.append(box);
« no previous file with comments | « Source/bindings/core/v8/ExceptionMessages.h ('k') | Source/core/css/CSSCalculationValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698