summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp')
-rw-r--r--WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp b/WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp
index daa9b34..2abdb15 100644
--- a/WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp
+++ b/WebCore/bindings/v8/custom/V8CustomSQLStatementCallback.cpp
@@ -55,15 +55,15 @@ void V8CustomSQLStatementCallback::handleEvent(SQLTransaction* transaction, SQLR
LOCK_V8;
v8::HandleScope handleScope;
- v8::Handle<v8::Context> context = V8Proxy::GetContext(m_frame.get());
+ v8::Handle<v8::Context> context = V8Proxy::context(m_frame.get());
if (context.IsEmpty())
return;
v8::Context::Scope scope(context);
v8::Handle<v8::Value> argv[] = {
- V8Proxy::ToV8Object(V8ClassIndex::SQLTRANSACTION, transaction),
- V8Proxy::ToV8Object(V8ClassIndex::SQLRESULTSET, resultSet)
+ V8DOMWrapper::convertToV8Object(V8ClassIndex::SQLTRANSACTION, transaction),
+ V8DOMWrapper::convertToV8Object(V8ClassIndex::SQLRESULTSET, resultSet)
};
// Protect the frame until the callback returns.