summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/wtf/text/AtomicString.h
diff options
context:
space:
mode:
authorjchaffraix@chromium.org <jchaffraix@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2013-04-29 21:53:19 +0000
committerjchaffraix@chromium.org <jchaffraix@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2013-04-29 21:53:19 +0000
commitbde7cdaa2ee8b8b71518da9061b5dd042fa75805 (patch)
tree4bbc088f40ffa4e01e3143a734cbb5e2e5bea62f /third_party/WebKit/Source/wtf/text/AtomicString.h
parentb823717a8fa79a2e115dd5d5940ca63f61d619d0 (diff)
downloadchromium_src-bde7cdaa2ee8b8b71518da9061b5dd042fa75805.zip
chromium_src-bde7cdaa2ee8b8b71518da9061b5dd042fa75805.tar.gz
chromium_src-bde7cdaa2ee8b8b71518da9061b5dd042fa75805.tar.bz2
Shorten and simplify wtf/ExportMacros.h
Most of export macros were just empty but it was difficult to see that due to several other macros never set: - EXPORT_MACROS - EXPORT_MACROS_FOR_TESTING - BUILDING_WTF && STATICALLY_LINKED_WITH_WTF This change removed several macros, including WTF_EXPORTDATA that impacted other files, but left some empty macros that were used in a lot of files to keep this change focused. R=eseidel@chromium.org Review URL: https://codereview.chromium.org/13946007 git-svn-id: svn://svn.chromium.org/blink/trunk@149372 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.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/third_party/WebKit/Source/wtf/text/AtomicString.h b/third_party/WebKit/Source/wtf/text/AtomicString.h
index 512a90a..3a84a04 100644
--- a/third_party/WebKit/Source/wtf/text/AtomicString.h
+++ b/third_party/WebKit/Source/wtf/text/AtomicString.h
@@ -219,14 +219,14 @@ inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return e
// Define external global variables for the commonly used atomic strings.
// These are only usable from the main thread.
#ifndef ATOMICSTRING_HIDE_GLOBALS
-extern const WTF_EXPORTDATA AtomicString nullAtom;
-extern const WTF_EXPORTDATA AtomicString emptyAtom;
-extern const WTF_EXPORTDATA AtomicString textAtom;
-extern const WTF_EXPORTDATA AtomicString commentAtom;
-extern const WTF_EXPORTDATA AtomicString starAtom;
-extern const WTF_EXPORTDATA AtomicString xmlAtom;
-extern const WTF_EXPORTDATA AtomicString xmlnsAtom;
-extern const WTF_EXPORTDATA AtomicString xlinkAtom;
+extern const AtomicString nullAtom;
+extern const AtomicString emptyAtom;
+extern const AtomicString textAtom;
+extern const AtomicString commentAtom;
+extern const AtomicString starAtom;
+extern const AtomicString xmlAtom;
+extern const AtomicString xmlnsAtom;
+extern const AtomicString xlinkAtom;
inline AtomicString AtomicString::fromUTF8(const char* characters, size_t length)
{