Index: Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp |
diff --git a/Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp b/Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp |
index c9c6622d8fd62f9861801e3803827f0cb4820378..36a1cd84a54b801ce7ba002aa278fb393462c9cd 100644 |
--- a/Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp |
+++ b/Source/bindings/modules/v8/custom/V8CustomSQLStatementErrorCallback.cpp |
@@ -50,8 +50,8 @@ bool V8SQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, SQLEr |
ScriptState::Scope scope(m_scriptState.get()); |
- v8::Handle<v8::Value> transactionHandle = toV8(transaction, m_scriptState->context()->Global(), isolate); |
- v8::Handle<v8::Value> errorHandle = toV8(error, m_scriptState->context()->Global(), isolate); |
+ v8::Local<v8::Value> transactionHandle = toV8(transaction, m_scriptState->context()->Global(), isolate); |
+ v8::Local<v8::Value> errorHandle = toV8(error, m_scriptState->context()->Global(), isolate); |
if (transactionHandle.IsEmpty() || errorHandle.IsEmpty()) { |
if (!isScriptControllerTerminating()) |
CRASH(); |
@@ -60,7 +60,7 @@ bool V8SQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, SQLEr |
ASSERT(transactionHandle->IsObject()); |
- v8::Handle<v8::Value> argv[] = { |
+ v8::Local<v8::Value> argv[] = { |
transactionHandle, |
errorHandle |
}; |
@@ -68,7 +68,7 @@ bool V8SQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, SQLEr |
v8::TryCatch exceptionCatcher; |
exceptionCatcher.SetVerbose(true); |
- v8::Handle<v8::Value> result = ScriptController::callFunction(executionContext(), m_callback.newLocal(isolate), m_scriptState->context()->Global(), WTF_ARRAY_LENGTH(argv), argv, isolate); |
+ v8::Local<v8::Value> result = ScriptController::callFunction(executionContext(), m_callback.newLocal(isolate), m_scriptState->context()->Global(), WTF_ARRAY_LENGTH(argv), argv, isolate); |
// FIXME: This comment doesn't make much sense given what the code is actually doing. |
// |