Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Side by Side Diff: third_party/WebKit/Source/bindings/scripts/v8_interface.py

Issue 2725673002: WIP bindings: Expand usage of NativeValueTraits. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 'bindings/core/v8/GeneratedCodeHelper.h', 53 'bindings/core/v8/GeneratedCodeHelper.h',
54 'bindings/core/v8/ScriptWrappable.h', 54 'bindings/core/v8/ScriptWrappable.h',
55 'bindings/core/v8/ToV8.h', 55 'bindings/core/v8/ToV8.h',
56 'bindings/core/v8/V8Binding.h', 56 'bindings/core/v8/V8Binding.h',
57 'bindings/core/v8/V8DOMWrapper.h', 57 'bindings/core/v8/V8DOMWrapper.h',
58 'bindings/core/v8/WrapperTypeInfo.h', 58 'bindings/core/v8/WrapperTypeInfo.h',
59 'platform/heap/Handle.h', 59 'platform/heap/Handle.h',
60 ]) 60 ])
61 INTERFACE_CPP_INCLUDES = frozenset([ 61 INTERFACE_CPP_INCLUDES = frozenset([
62 'bindings/core/v8/ExceptionState.h', 62 'bindings/core/v8/ExceptionState.h',
63 'bindings/core/v8/IDLTypes.h',
63 'bindings/core/v8/V8DOMConfiguration.h', 64 'bindings/core/v8/V8DOMConfiguration.h',
64 'bindings/core/v8/V8ObjectConstructor.h', 65 'bindings/core/v8/V8ObjectConstructor.h',
65 'core/dom/Document.h', 66 'core/dom/Document.h',
66 'wtf/GetPtr.h', 67 'wtf/GetPtr.h',
67 'wtf/RefPtr.h', 68 'wtf/RefPtr.h',
68 ]) 69 ])
69 70
70 71
71 def filter_has_constant_configuration(constants): 72 def filter_has_constant_configuration(constants):
72 return [constant for constant in constants if 73 return [constant for constant in constants if
(...skipping 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after
1369 extended_attributes = deleter.extended_attributes 1370 extended_attributes = deleter.extended_attributes
1370 is_call_with_script_state = v8_utilities.has_extended_attribute_value(delete r, 'CallWith', 'ScriptState') 1371 is_call_with_script_state = v8_utilities.has_extended_attribute_value(delete r, 'CallWith', 'ScriptState')
1371 is_ce_reactions = 'CEReactions' in extended_attributes 1372 is_ce_reactions = 'CEReactions' in extended_attributes
1372 return { 1373 return {
1373 'is_call_with_script_state': is_call_with_script_state, 1374 'is_call_with_script_state': is_call_with_script_state,
1374 'is_ce_reactions': is_ce_reactions, 1375 'is_ce_reactions': is_ce_reactions,
1375 'is_custom': 'Custom' in extended_attributes, 1376 'is_custom': 'Custom' in extended_attributes,
1376 'is_raises_exception': 'RaisesException' in extended_attributes, 1377 'is_raises_exception': 'RaisesException' in extended_attributes,
1377 'name': cpp_name(deleter), 1378 'name': cpp_name(deleter),
1378 } 1379 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698