summaryrefslogtreecommitdiffstats
path: root/WebCore/loader
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2009-08-14 16:52:20 +0100
committerBen Murdoch <benm@google.com>2009-08-14 16:52:20 +0100
commita3971b87c0cb909bf1cab89214c7c0c0daab6bb0 (patch)
treec0bf270aa0247e1a6cc24e548fecd22ebc64c2a1 /WebCore/loader
parent1342fc42f42712fca36f7f2c850f2546d0916730 (diff)
downloadexternal_webkit-a3971b87c0cb909bf1cab89214c7c0c0daab6bb0.zip
external_webkit-a3971b87c0cb909bf1cab89214c7c0c0daab6bb0.tar.gz
external_webkit-a3971b87c0cb909bf1cab89214c7c0c0daab6bb0.tar.bz2
Fixes for Clipboard and IconDatabase
Diffstat (limited to 'WebCore/loader')
-rw-r--r--WebCore/loader/icon/IconDatabase.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/WebCore/loader/icon/IconDatabase.cpp b/WebCore/loader/icon/IconDatabase.cpp
index a6c2a66..9c026d7 100644
--- a/WebCore/loader/icon/IconDatabase.cpp
+++ b/WebCore/loader/icon/IconDatabase.cpp
@@ -39,11 +39,7 @@
#include "SQLiteStatement.h"
#include "SQLiteTransaction.h"
#include "SuddenTermination.h"
-#if USE(JSC)
#include <runtime/InitializeThreading.h>
-#elif USE(V8)
-#include "V8InitializeThreading.h"
-#endif
#include <wtf/CurrentTime.h>
#include <wtf/MainThread.h>
#include <wtf/StdLibExtras.h>
@@ -97,11 +93,7 @@ static IconDatabaseClient* defaultClient()
IconDatabase* iconDatabase()
{
if (!sharedIconDatabase) {
-#if USE(JSC)
JSC::initializeThreading();
-#elif USE(V8)
- V8::initializeThreading();
-#endif
sharedIconDatabase = new IconDatabase;
}
return sharedIconDatabase;