| OLD | NEW |
| 1 # Copyright (C) 2013 Google Inc. All rights reserved. | 1 # Copyright (C) 2013 Google Inc. All rights reserved. |
| 2 # coding=utf-8 | 2 # coding=utf-8 |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 import v8_types | 46 import v8_types |
| 47 import v8_utilities | 47 import v8_utilities |
| 48 from v8_utilities import (cpp_name_or_partial, cpp_name, has_extended_attribute_
value, | 48 from v8_utilities import (cpp_name_or_partial, cpp_name, has_extended_attribute_
value, |
| 49 runtime_enabled_feature_name, is_legacy_interface_type
_checking) | 49 runtime_enabled_feature_name, is_legacy_interface_type
_checking) |
| 50 | 50 |
| 51 | 51 |
| 52 INTERFACE_H_INCLUDES = frozenset([ | 52 INTERFACE_H_INCLUDES = frozenset([ |
| 53 'bindings/core/v8/GeneratedCodeHelper.h', | 53 'bindings/core/v8/GeneratedCodeHelper.h', |
| 54 'bindings/core/v8/NativeValueTraits.h', | 54 'bindings/core/v8/NativeValueTraits.h', |
| 55 'bindings/core/v8/ScriptWrappable.h', | 55 'bindings/core/v8/ScriptWrappable.h', |
| 56 'bindings/core/v8/ToV8.h', | 56 'bindings/core/v8/ToV8ForCore.h', |
| 57 'bindings/core/v8/V8Binding.h', | 57 'bindings/core/v8/V8Binding.h', |
| 58 'bindings/core/v8/V8DOMWrapper.h', | 58 'bindings/core/v8/V8DOMWrapper.h', |
| 59 'bindings/core/v8/WrapperTypeInfo.h', | 59 'bindings/core/v8/WrapperTypeInfo.h', |
| 60 'platform/heap/Handle.h', | 60 'platform/heap/Handle.h', |
| 61 ]) | 61 ]) |
| 62 INTERFACE_CPP_INCLUDES = frozenset([ | 62 INTERFACE_CPP_INCLUDES = frozenset([ |
| 63 'bindings/core/v8/ExceptionState.h', | 63 'bindings/core/v8/ExceptionState.h', |
| 64 'bindings/core/v8/V8DOMConfiguration.h', | 64 'bindings/core/v8/V8DOMConfiguration.h', |
| 65 'bindings/core/v8/V8ObjectConstructor.h', | 65 'bindings/core/v8/V8ObjectConstructor.h', |
| 66 'core/dom/Document.h', | 66 'core/dom/Document.h', |
| (...skipping 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1372 extended_attributes = deleter.extended_attributes | 1372 extended_attributes = deleter.extended_attributes |
| 1373 is_call_with_script_state = v8_utilities.has_extended_attribute_value(delete
r, 'CallWith', 'ScriptState') | 1373 is_call_with_script_state = v8_utilities.has_extended_attribute_value(delete
r, 'CallWith', 'ScriptState') |
| 1374 is_ce_reactions = 'CEReactions' in extended_attributes | 1374 is_ce_reactions = 'CEReactions' in extended_attributes |
| 1375 return { | 1375 return { |
| 1376 'is_call_with_script_state': is_call_with_script_state, | 1376 'is_call_with_script_state': is_call_with_script_state, |
| 1377 'is_ce_reactions': is_ce_reactions, | 1377 'is_ce_reactions': is_ce_reactions, |
| 1378 'is_custom': 'Custom' in extended_attributes, | 1378 'is_custom': 'Custom' in extended_attributes, |
| 1379 'is_raises_exception': 'RaisesException' in extended_attributes, | 1379 'is_raises_exception': 'RaisesException' in extended_attributes, |
| 1380 'name': cpp_name(deleter), | 1380 'name': cpp_name(deleter), |
| 1381 } | 1381 } |
| OLD | NEW |