| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Generate template values for a callback function. | 5 """Generate template values for a callback function. |
| 6 | 6 |
| 7 Design doc: http://www.chromium.org/developers/design-documents/idl-compiler | 7 Design doc: http://www.chromium.org/developers/design-documents/idl-compiler |
| 8 """ | 8 """ |
| 9 | 9 |
| 10 from v8_globals import includes # pylint: disable=W0403 | 10 from v8_globals import includes # pylint: disable=W0403 |
| 11 import v8_utilities # pylint: disable=W0403 | 11 import v8_utilities # pylint: disable=W0403 |
| 12 | 12 |
| 13 CALLBACK_FUNCTION_H_INCLUDES = frozenset([ | 13 CALLBACK_FUNCTION_H_INCLUDES = frozenset([ |
| 14 'bindings/core/v8/ScopedPersistent.h', | |
| 15 'bindings/core/v8/ScriptWrappable.h', | 14 'bindings/core/v8/ScriptWrappable.h', |
| 15 'bindings/core/v8/TraceWrapperV8Reference.h', |
| 16 'platform/heap/Handle.h', | 16 'platform/heap/Handle.h', |
| 17 'wtf/text/WTFString.h', | 17 'wtf/text/WTFString.h', |
| 18 ]) | 18 ]) |
| 19 CALLBACK_FUNCTION_CPP_INCLUDES = frozenset([ | 19 CALLBACK_FUNCTION_CPP_INCLUDES = frozenset([ |
| 20 'bindings/core/v8/ExceptionState.h', | 20 'bindings/core/v8/ExceptionState.h', |
| 21 'bindings/core/v8/ScriptState.h', | 21 'bindings/core/v8/ScriptState.h', |
| 22 'bindings/core/v8/ToV8.h', | 22 'bindings/core/v8/ToV8.h', |
| 23 'bindings/core/v8/V8Binding.h', | 23 'bindings/core/v8/V8Binding.h', |
| 24 'core/dom/ExecutionContext.h', | 24 'core/dom/ExecutionContext.h', |
| 25 'wtf/Assertions.h', | 25 'wtf/Assertions.h', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 ] | 73 ] |
| 74 argument_declarations.extend( | 74 argument_declarations.extend( |
| 75 '%s %s' % (argument.idl_type.callback_cpp_type, argument.name) | 75 '%s %s' % (argument.idl_type.callback_cpp_type, argument.name) |
| 76 for argument in arguments) | 76 for argument in arguments) |
| 77 if return_cpp_type: | 77 if return_cpp_type: |
| 78 argument_declarations.append('%s returnValue' % return_cpp_type) | 78 argument_declarations.append('%s returnValue' % return_cpp_type) |
| 79 return { | 79 return { |
| 80 'argument_declarations': argument_declarations, | 80 'argument_declarations': argument_declarations, |
| 81 'arguments': [argument_context(argument) for argument in arguments], | 81 'arguments': [argument_context(argument) for argument in arguments], |
| 82 } | 82 } |
| OLD | NEW |