Index: Source/bindings/scripts/v8_methods.py |
diff --git a/Source/bindings/scripts/v8_methods.py b/Source/bindings/scripts/v8_methods.py |
index d6a07d67ecb785317bfc831593c98e6a3e7b05f3..6f3813b081fc8f799871f93dee3df0509cbf0b5b 100644 |
--- a/Source/bindings/scripts/v8_methods.py |
+++ b/Source/bindings/scripts/v8_methods.py |
@@ -163,10 +163,10 @@ def method_context(interface, method): |
argument for argument in arguments |
if not argument.is_optional]), |
'per_context_enabled_function': v8_utilities.per_context_enabled_function_name(method), # [PerContextEnabled] |
+ 'private_script_v8_value_to_local_cpp_value': idl_type.v8_value_to_local_cpp_value( |
+ extended_attributes, 'v8Value', 'cppValue', isolate='scriptState->isolate()', used_in_private_script=True), |
'property_attributes': property_attributes(method), |
'raw_cpp_type': idl_type.cpp_type_args(raw_type=True), |
Jens Widell
2014/07/03 11:33:14
This becomes unused now, I think.
haraken
2014/07/03 11:56:09
Removed.
|
- 'returned_v8_value_to_local_cpp_value': v8_types.v8_value_to_cpp_value( |
- idl_type, extended_attributes, 'v8Value', 0, isolate='scriptState->isolate()'), |
'runtime_enabled_function': v8_utilities.runtime_enabled_function_name(method), # [RuntimeEnabled] |
'signature': 'v8::Local<v8::Signature>()' if is_static or 'DoNotCheckSignature' in extended_attributes else 'defaultSignature', |
'union_arguments': idl_type.union_arguments, |