| Index: Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp
|
| diff --git a/Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp b/Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp
|
| index 2871bec70f778b9e21a1609ec230def75445a92f..79ab4dac43991c6a454148f93c988a41c24e7c12 100644
|
| --- a/Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp
|
| +++ b/Source/bindings/modules/v8/custom/V8SQLTransactionCustom.cpp
|
| @@ -74,7 +74,7 @@ void V8SQLTransaction::executeSqlMethodCustom(const v8::FunctionCallbackInfo<v8:
|
| sqlArgsLength = length->Uint32Value();
|
|
|
| for (unsigned i = 0; i < sqlArgsLength; ++i) {
|
| - v8::Handle<v8::Integer> key = v8::Integer::New(info.GetIsolate(), i);
|
| + v8::Local<v8::Integer> key = v8::Integer::New(info.GetIsolate(), i);
|
| TONATIVE_VOID(v8::Local<v8::Value>, value, sqlArgsObject->Get(key));
|
|
|
| if (value.IsEmpty() || value->IsNull()) {
|
| @@ -97,7 +97,7 @@ void V8SQLTransaction::executeSqlMethodCustom(const v8::FunctionCallbackInfo<v8:
|
| exceptionState.throwIfNeeded();
|
| return;
|
| }
|
| - callback = V8SQLStatementCallback::create(v8::Handle<v8::Function>::Cast(info[2]), ScriptState::current(info.GetIsolate()));
|
| + callback = V8SQLStatementCallback::create(v8::Local<v8::Function>::Cast(info[2]), ScriptState::current(info.GetIsolate()));
|
| } else {
|
| callback = nullptr;
|
| }
|
| @@ -109,7 +109,7 @@ void V8SQLTransaction::executeSqlMethodCustom(const v8::FunctionCallbackInfo<v8:
|
| exceptionState.throwIfNeeded();
|
| return;
|
| }
|
| - errorCallback = V8SQLStatementErrorCallback::create(v8::Handle<v8::Function>::Cast(info[3]), ScriptState::current(info.GetIsolate()));
|
| + errorCallback = V8SQLStatementErrorCallback::create(v8::Local<v8::Function>::Cast(info[3]), ScriptState::current(info.GetIsolate()));
|
| } else {
|
| errorCallback = nullptr;
|
| }
|
|
|