diff options
Diffstat (limited to 'WebCore/platform/text/PlatformString.h')
-rw-r--r-- | WebCore/platform/text/PlatformString.h | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/WebCore/platform/text/PlatformString.h b/WebCore/platform/text/PlatformString.h index 247536a..8a379be 100644 --- a/WebCore/platform/text/PlatformString.h +++ b/WebCore/platform/text/PlatformString.h @@ -31,16 +31,6 @@ #include <objc/objc.h> #endif -#if USE(JSC) -#include <runtime/Identifier.h> -#else -// runtime/Identifier.h brings in a variety of wtf headers. We explicitly -// include them in the case of non-JSC builds to keep things consistent. -#include <wtf/HashMap.h> -#include <wtf/HashSet.h> -#include <wtf/OwnPtr.h> -#endif - #if PLATFORM(CF) typedef const struct __CFString * CFStringRef; #endif @@ -60,6 +50,13 @@ class wxString; class BString; #endif +#if USE(JSC) +namespace JSC { +class Identifier; +class UString; +} +#endif + namespace WebCore { class CString; |