summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/wtf/Threading.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2009-11-11 23:16:52 +0000
committerSteve Block <steveblock@google.com>2009-11-12 18:28:34 +0000
commite431852bff2ca6954b119a8c9471fd676abea029 (patch)
tree2c0376b2197a76742550bc628154de4036b2fa38 /JavaScriptCore/wtf/Threading.cpp
parenta2bbe04f16fb11132b3318fb0aecb290f232c563 (diff)
downloadexternal_webkit-e431852bff2ca6954b119a8c9471fd676abea029.zip
external_webkit-e431852bff2ca6954b119a8c9471fd676abea029.tar.gz
external_webkit-e431852bff2ca6954b119a8c9471fd676abea029.tar.bz2
Removes WebCorePrefixAndroid.h to aid WebKit upstreaming.
Content from WebCorePrefixAndroid.h has been moved to WebCorePrefix.h and the Android Makefiles modified to use that file. - Enabler flags have been moved to WebCore/config.h. - flex_XXX_T types are defined in WebCore/css/maketokenizer - Most system includes are alreay present in WebCorePrefix.h - Some includes have been moved directly to the source files that require them. - The following includes seem not to be required so have been dropped. - #include <limits.h> - #include <math.h> - #include <stdint.h> - #include <unistd.h> Change-Id: I8eba4d0a606463503554955e113d57bdf76a7136
Diffstat (limited to 'JavaScriptCore/wtf/Threading.cpp')
-rw-r--r--JavaScriptCore/wtf/Threading.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/JavaScriptCore/wtf/Threading.cpp b/JavaScriptCore/wtf/Threading.cpp
index 1d4185c..35ba017 100644
--- a/JavaScriptCore/wtf/Threading.cpp
+++ b/JavaScriptCore/wtf/Threading.cpp
@@ -28,6 +28,10 @@
#include <string.h>
+#if PLATFORM(ANDROID)
+#include <memory>
+#endif
+
namespace WTF {
struct NewThreadContext : FastAllocBase {