diff options
Diffstat (limited to 'WebCore/bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp')
-rw-r--r-- | WebCore/bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp b/WebCore/bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp index 6c7aba2..4b84ebe 100644 --- a/WebCore/bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp +++ b/WebCore/bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp @@ -55,15 +55,15 @@ bool V8CustomSQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, 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 true; v8::Context::Scope scope(context); v8::Handle<v8::Value> argv[] = { - V8Proxy::ToV8Object(V8ClassIndex::SQLTRANSACTION, transaction), - V8Proxy::ToV8Object(V8ClassIndex::SQLERROR, error) + V8DOMWrapper::convertToV8Object(V8ClassIndex::SQLTRANSACTION, transaction), + V8DOMWrapper::convertToV8Object(V8ClassIndex::SQLERROR, error) }; // Protect the frame until the callback returns. |