| Index: third_party/WebKit/Source/bindings/templates/callback_function.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/callback_function.cpp.tmpl b/third_party/WebKit/Source/bindings/templates/callback_function.cpp.tmpl
|
| index 412a9df6e81537ad6a75346ed36922528b74761e..56cab785dd493e91872aa22407f416df297c17a0 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/callback_function.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/callback_function.cpp.tmpl
|
| @@ -44,7 +44,7 @@ bool {{cpp_class}}::call({{argument_declarations | join(', ')}}) {
|
| v8::Local<v8::Value> {{argument.argument_name}} = {{argument.cpp_value_to_v8_value}};
|
| {% endfor %}
|
|
|
| - v8::Local<v8::Value> thisValue = toV8(scriptWrappable, m_scriptState->context()->Global(), m_scriptState->isolate());
|
| + v8::Local<v8::Value> thisValue = ToV8(scriptWrappable, m_scriptState->context()->Global(), m_scriptState->isolate());
|
|
|
| {% if arguments %}
|
| v8::Local<v8::Value> argv[] = { {{arguments | join(', ', 'argument_name')}} };
|
|
|