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

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

Issue 2668903003: Replace WTF::emptyString{16Bit}() with a static global (Closed)
Patch Set: Replace WTF::emptyString{16Bit}() with a static global Created 3 years, 11 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
Index: third_party/WebKit/Source/core/svg/SVGTransform.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGTransform.cpp b/third_party/WebKit/Source/core/svg/SVGTransform.cpp
index 98e1590f1b0b718a7ebe83b071c95b915f577e90..0518512768ffa8b4cae33ef550c6ca5434e0b7e6 100644
--- a/third_party/WebKit/Source/core/svg/SVGTransform.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGTransform.cpp
@@ -153,7 +153,7 @@ String SVGTransform::valueAsString() const {
size_t argumentCount = 0;
switch (m_transformType) {
case kSvgTransformUnknown:
- return emptyString();
+ return emptyString;
case kSvgTransformMatrix: {
arguments[argumentCount++] = m_matrix.a();
arguments[argumentCount++] = m_matrix.b();
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGPathParserTest.cpp ('k') | third_party/WebKit/Source/core/testing/DictionaryTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698