| Index: Source/WebCore/bindings/v8/ScriptFunctionCall.cpp
|
| ===================================================================
|
| --- Source/WebCore/bindings/v8/ScriptFunctionCall.cpp (revision 141118)
|
| +++ Source/WebCore/bindings/v8/ScriptFunctionCall.cpp (working copy)
|
| @@ -62,13 +62,13 @@
|
| void ScriptCallArgumentHandler::appendArgument(const String& argument)
|
| {
|
| ScriptScope scope(m_scriptState);
|
| - m_arguments.append(v8String(argument, m_scriptState->isolate()));
|
| + m_arguments.append(deprecatedV8String(argument));
|
| }
|
|
|
| void ScriptCallArgumentHandler::appendArgument(const char* argument)
|
| {
|
| ScriptScope scope(m_scriptState);
|
| - m_arguments.append(v8String(argument, m_scriptState->isolate()));
|
| + m_arguments.append(deprecatedV8String(argument));
|
| }
|
|
|
| void ScriptCallArgumentHandler::appendArgument(long argument)
|
| @@ -118,7 +118,7 @@
|
| ScriptScope scope(m_scriptState, reportExceptions);
|
|
|
| v8::Local<v8::Object> thisObject = m_thisObject.v8Object();
|
| - v8::Local<v8::Value> value = thisObject->Get(v8String(m_name, m_scriptState->isolate()));
|
| + v8::Local<v8::Value> value = thisObject->Get(deprecatedV8String(m_name));
|
| if (!scope.success()) {
|
| hadException = true;
|
| return ScriptValue();
|
| @@ -155,7 +155,7 @@
|
| ScriptScope scope(m_scriptState, reportExceptions);
|
|
|
| v8::Local<v8::Object> thisObject = m_thisObject.v8Object();
|
| - v8::Local<v8::Value> value = thisObject->Get(v8String(m_name, m_scriptState->isolate()));
|
| + v8::Local<v8::Value> value = thisObject->Get(deprecatedV8String(m_name));
|
| if (!scope.success()) {
|
| hadException = true;
|
| return ScriptObject();
|
|
|