| 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/NativeValueTraits.h', |
| 14 'bindings/core/v8/ScriptWrappable.h', | 15 'bindings/core/v8/ScriptWrappable.h', |
| 15 'bindings/core/v8/TraceWrapperV8Reference.h', | 16 'bindings/core/v8/TraceWrapperV8Reference.h', |
| 16 'platform/heap/Handle.h', | 17 'platform/heap/Handle.h', |
| 17 'wtf/text/WTFString.h', | 18 'wtf/text/WTFString.h', |
| 18 ]) | 19 ]) |
| 19 CALLBACK_FUNCTION_CPP_INCLUDES = frozenset([ | 20 CALLBACK_FUNCTION_CPP_INCLUDES = frozenset([ |
| 20 'bindings/core/v8/ExceptionState.h', | 21 'bindings/core/v8/ExceptionState.h', |
| 21 'bindings/core/v8/ScriptState.h', | 22 'bindings/core/v8/ScriptState.h', |
| 22 'bindings/core/v8/ToV8.h', | 23 'bindings/core/v8/ToV8.h', |
| 23 'bindings/core/v8/V8Binding.h', | 24 'bindings/core/v8/V8Binding.h', |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 ] | 74 ] |
| 74 argument_declarations.extend( | 75 argument_declarations.extend( |
| 75 '%s %s' % (argument.idl_type.callback_cpp_type, argument.name) | 76 '%s %s' % (argument.idl_type.callback_cpp_type, argument.name) |
| 76 for argument in arguments) | 77 for argument in arguments) |
| 77 if return_cpp_type: | 78 if return_cpp_type: |
| 78 argument_declarations.append('%s returnValue' % return_cpp_type) | 79 argument_declarations.append('%s returnValue' % return_cpp_type) |
| 79 return { | 80 return { |
| 80 'argument_declarations': argument_declarations, | 81 'argument_declarations': argument_declarations, |
| 81 'arguments': [argument_context(argument) for argument in arguments], | 82 'arguments': [argument_context(argument) for argument in arguments], |
| 82 } | 83 } |
| OLD | NEW |