Index: Source/wtf/text/StringStatics.cpp |
diff --git a/Source/wtf/text/StringStatics.cpp b/Source/wtf/text/StringStatics.cpp |
index 2ecd9648c1bcdc63aef4d951370d661b91651225..8d0ac26a55e89854669480a92cea07109bc30976 100644 |
--- a/Source/wtf/text/StringStatics.cpp |
+++ b/Source/wtf/text/StringStatics.cpp |
@@ -47,8 +47,6 @@ StringImpl* StringImpl::empty() |
WTF_EXPORT DEFINE_GLOBAL(AtomicString, nullAtom) |
WTF_EXPORT DEFINE_GLOBAL(AtomicString, emptyAtom) |
-WTF_EXPORT DEFINE_GLOBAL(AtomicString, textAtom) |
-WTF_EXPORT DEFINE_GLOBAL(AtomicString, commentAtom) |
WTF_EXPORT DEFINE_GLOBAL(AtomicString, starAtom) |
WTF_EXPORT DEFINE_GLOBAL(AtomicString, xmlAtom) |
WTF_EXPORT DEFINE_GLOBAL(AtomicString, xmlnsAtom) |
@@ -76,8 +74,6 @@ void StringStatics::init() |
ASSERT(isMainThread()); |
// FIXME: These should be allocated at compile time. |
- new (NotNull, (void*)&textAtom) AtomicString("#text", AtomicString::ConstructFromLiteral); |
- new (NotNull, (void*)&commentAtom) AtomicString("#comment", AtomicString::ConstructFromLiteral); |
new (NotNull, (void*)&starAtom) AtomicString("*", AtomicString::ConstructFromLiteral); |
new (NotNull, (void*)&xmlAtom) AtomicString("xml", AtomicString::ConstructFromLiteral); |
new (NotNull, (void*)&xmlnsAtom) AtomicString("xmlns", AtomicString::ConstructFromLiteral); |