summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/v8/custom
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2009-11-06 21:08:07 +0000
committerSteve Block <steveblock@google.com>2009-11-11 00:34:44 +0000
commitba51ea61f184429a046b2a212fcc905083a360fe (patch)
treee6fa96a8eea4030f578acf685a5d97365c9f1cea /WebCore/bindings/v8/custom
parent2c386559c2b67b9921be326a44676937b61b08f4 (diff)
downloadexternal_webkit-ba51ea61f184429a046b2a212fcc905083a360fe.zip
external_webkit-ba51ea61f184429a046b2a212fcc905083a360fe.tar.gz
external_webkit-ba51ea61f184429a046b2a212fcc905083a360fe.tar.bz2
Removes LOCK_V8 calls, which are incomplete having been abandonned prior to previous WebKit merges.
Change-Id: Iee5a3a8d4eb1087ef196f193efb93d1e0dbcf77b
Diffstat (limited to 'WebCore/bindings/v8/custom')
-rw-r--r--WebCore/bindings/v8/custom/V8CustomPositionCallback.cpp1
-rw-r--r--WebCore/bindings/v8/custom/V8CustomPositionErrorCallback.cpp1
-rw-r--r--WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp1
-rw-r--r--WebCore/bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp1
-rw-r--r--WebCore/bindings/v8/custom/V8CustomSQLTransactionCallback.cpp1
-rw-r--r--WebCore/bindings/v8/custom/V8CustomSQLTransactionErrorCallback.cpp1
-rw-r--r--WebCore/bindings/v8/custom/V8CustomVoidCallback.cpp1
7 files changed, 0 insertions, 7 deletions
diff --git a/WebCore/bindings/v8/custom/V8CustomPositionCallback.cpp b/WebCore/bindings/v8/custom/V8CustomPositionCallback.cpp
index 4f2fe0e..0fb0f78 100644
--- a/WebCore/bindings/v8/custom/V8CustomPositionCallback.cpp
+++ b/WebCore/bindings/v8/custom/V8CustomPositionCallback.cpp
@@ -49,7 +49,6 @@ V8CustomPositionCallback::~V8CustomPositionCallback()
void V8CustomPositionCallback::handleEvent(Geoposition* position)
{
- LOCK_V8;
v8::HandleScope handleScope;
v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get());
diff --git a/WebCore/bindings/v8/custom/V8CustomPositionErrorCallback.cpp b/WebCore/bindings/v8/custom/V8CustomPositionErrorCallback.cpp
index e446d85..bd36f88 100644
--- a/WebCore/bindings/v8/custom/V8CustomPositionErrorCallback.cpp
+++ b/WebCore/bindings/v8/custom/V8CustomPositionErrorCallback.cpp
@@ -49,7 +49,6 @@ V8CustomPositionErrorCallback::~V8CustomPositionErrorCallback()
void V8CustomPositionErrorCallback::handleEvent(PositionError* error)
{
- LOCK_V8;
v8::HandleScope handleScope;
v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get());
diff --git a/WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp b/WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp
index 2abdb15..64abdc4 100644
--- a/WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp
+++ b/WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp
@@ -52,7 +52,6 @@ V8CustomSQLStatementCallback::~V8CustomSQLStatementCallback()
void V8CustomSQLStatementCallback::handleEvent(SQLTransaction* transaction, SQLResultSet* resultSet, bool& raisedException)
{
- LOCK_V8;
v8::HandleScope handleScope;
v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get());
diff --git a/WebCore/bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp b/WebCore/bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp
index efab455..1af3562 100644
--- a/WebCore/bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp
+++ b/WebCore/bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp
@@ -52,7 +52,6 @@ V8CustomSQLStatementErrorCallback::~V8CustomSQLStatementErrorCallback()
bool V8CustomSQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, SQLError* error)
{
- LOCK_V8;
v8::HandleScope handleScope;
v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get());
diff --git a/WebCore/bindings/v8/custom/V8CustomSQLTransactionCallback.cpp b/WebCore/bindings/v8/custom/V8CustomSQLTransactionCallback.cpp
index 704115e..2cef6b3 100644
--- a/WebCore/bindings/v8/custom/V8CustomSQLTransactionCallback.cpp
+++ b/WebCore/bindings/v8/custom/V8CustomSQLTransactionCallback.cpp
@@ -53,7 +53,6 @@ V8CustomSQLTransactionCallback::~V8CustomSQLTransactionCallback()
void V8CustomSQLTransactionCallback::handleEvent(SQLTransaction* transaction, bool& raisedException)
{
- LOCK_V8;
v8::HandleScope handleScope;
v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get());
diff --git a/WebCore/bindings/v8/custom/V8CustomSQLTransactionErrorCallback.cpp b/WebCore/bindings/v8/custom/V8CustomSQLTransactionErrorCallback.cpp
index f30467c..1a0939d 100644
--- a/WebCore/bindings/v8/custom/V8CustomSQLTransactionErrorCallback.cpp
+++ b/WebCore/bindings/v8/custom/V8CustomSQLTransactionErrorCallback.cpp
@@ -52,7 +52,6 @@ V8CustomSQLTransactionErrorCallback::~V8CustomSQLTransactionErrorCallback()
void V8CustomSQLTransactionErrorCallback::handleEvent(SQLError* error)
{
- LOCK_V8;
v8::HandleScope handleScope;
v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get());
diff --git a/WebCore/bindings/v8/custom/V8CustomVoidCallback.cpp b/WebCore/bindings/v8/custom/V8CustomVoidCallback.cpp
index b538b33..94cb104 100644
--- a/WebCore/bindings/v8/custom/V8CustomVoidCallback.cpp
+++ b/WebCore/bindings/v8/custom/V8CustomVoidCallback.cpp
@@ -49,7 +49,6 @@ V8CustomVoidCallback::~V8CustomVoidCallback()
void V8CustomVoidCallback::handleEvent()
{
- LOCK_V8;
v8::HandleScope handleScope;
v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get());