| Index: third_party/WebKit/Source/bindings/scripts/v8_utilities.py
|
| diff --git a/third_party/WebKit/Source/bindings/scripts/v8_utilities.py b/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
|
| index 183763570ceb21108928d84ef7249b514e7e816e..074377dec71493e539ec102be5b7d4e94cf1c311 100644
|
| --- a/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
|
| +++ b/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
|
| @@ -185,7 +185,7 @@ def activity_logging_world_check(member):
|
| CALL_WITH_ARGUMENTS = {
|
| 'ScriptState': 'scriptState',
|
| 'ExecutionContext': 'executionContext',
|
| - 'ScriptArguments': 'scriptArguments.release()',
|
| + 'ScriptArguments': 'scriptArguments',
|
| 'CurrentWindow': 'currentDOMWindow(info.GetIsolate())',
|
| 'EnteredWindow': 'enteredDOMWindow(info.GetIsolate())',
|
| 'Document': 'document',
|
| @@ -324,14 +324,6 @@ def exposed(member, interface):
|
| return exposure_set.code()
|
|
|
|
|
| -# [GarbageCollected]
|
| -def gc_type(definition):
|
| - extended_attributes = definition.extended_attributes
|
| - if 'GarbageCollected' in extended_attributes:
|
| - return 'GarbageCollectedObject'
|
| - return 'RefCountedObject'
|
| -
|
| -
|
| # [ImplementedAs]
|
| def cpp_name(definition_or_member):
|
| extended_attributes = definition_or_member.extended_attributes
|
|
|