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

Unified Diff: Source/wtf/text/StringStatics.cpp

Issue 587173005: Add WTF::String::emptyString16Bit (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
Index: Source/wtf/text/StringStatics.cpp
diff --git a/Source/wtf/text/StringStatics.cpp b/Source/wtf/text/StringStatics.cpp
index 099f00115619cdf3403f25e96563bff563f4b6f2..a20f3c05d1b8e679426ad48da6e7bedf9e473086 100644
--- a/Source/wtf/text/StringStatics.cpp
+++ b/Source/wtf/text/StringStatics.cpp
@@ -34,11 +34,13 @@
namespace WTF {
-StringImpl* StringImpl::empty()
+StringImpl* StringImpl::empty(bool is8Bit)
{
- DEFINE_STATIC_LOCAL(StringImpl, emptyString, (ConstructEmptyString));
- WTF_ANNOTATE_BENIGN_RACE(&emptyString, "Benign race on StringImpl::emptyString reference counter");
- return &emptyString;
+ DEFINE_STATIC_LOCAL(StringImpl, empty8BitString, (ConstructEmpty8BitString));
+ DEFINE_STATIC_LOCAL(StringImpl, empty16BitString, (ConstructEmpty16BitString));
+ WTF_ANNOTATE_BENIGN_RACE(&empty8BitString, "Benign race on StringImpl::empty8BitString reference counter");
+ WTF_ANNOTATE_BENIGN_RACE(&empty16BitString, "Benign race on StringImpl::empty16BitString reference counter");
+ return is8Bit ? &empty8BitString : &empty16BitString;
}
WTF_EXPORT DEFINE_GLOBAL(AtomicString, nullAtom)

Powered by Google App Engine
This is Rietveld 408576698