summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/wtf/text/AtomicString.h
diff options
context:
space:
mode:
authorphilipj@opera.com <philipj@opera.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2013-12-05 19:28:41 +0000
committerphilipj@opera.com <philipj@opera.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2013-12-05 19:28:41 +0000
commit5da6d49c421e78129afa125c7f4aed38fee20a2e (patch)
tree2088190d4733e24d1649e33f8f3c43cdfd008b07 /third_party/WebKit/Source/wtf/text/AtomicString.h
parent380d728408bd3d4dd8cd82de6b42756af9fb79b4 (diff)
downloadchromium_src-5da6d49c421e78129afa125c7f4aed38fee20a2e.zip
chromium_src-5da6d49c421e78129afa125c7f4aed38fee20a2e.tar.gz
chromium_src-5da6d49c421e78129afa125c7f4aed38fee20a2e.tar.bz2
Remove WTF::textAtom and WTF::commentAtom
These are only used in implementations of Node::nodeName(), where CDATASection, Document and DocumentFragment already use raw strings. Added in <https://trac.webkit.org/changeset/9639>, at which point both atoms were used in multiple places. Previously raw strings were used. BUG=none Review URL: https://codereview.chromium.org/106483002 git-svn-id: svn://svn.chromium.org/blink/trunk@163281 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/Source/wtf/text/AtomicString.h')
-rw-r--r--third_party/WebKit/Source/wtf/text/AtomicString.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/third_party/WebKit/Source/wtf/text/AtomicString.h b/third_party/WebKit/Source/wtf/text/AtomicString.h
index 7e3e6b8..3b25e4e 100644
--- a/third_party/WebKit/Source/wtf/text/AtomicString.h
+++ b/third_party/WebKit/Source/wtf/text/AtomicString.h
@@ -225,8 +225,6 @@ inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return e
#ifndef ATOMICSTRING_HIDE_GLOBALS
WTF_EXPORT extern const AtomicString nullAtom;
WTF_EXPORT extern const AtomicString emptyAtom;
-WTF_EXPORT extern const AtomicString textAtom;
-WTF_EXPORT extern const AtomicString commentAtom;
WTF_EXPORT extern const AtomicString starAtom;
WTF_EXPORT extern const AtomicString xmlAtom;
WTF_EXPORT extern const AtomicString xmlnsAtom;
@@ -263,8 +261,6 @@ template<> struct DefaultHash<AtomicString> {
using WTF::AtomicString;
using WTF::nullAtom;
using WTF::emptyAtom;
-using WTF::textAtom;
-using WTF::commentAtom;
using WTF::starAtom;
using WTF::xmlAtom;
using WTF::xmlnsAtom;