OLD | NEW |
1 # Copyright (C) 2013 Google Inc. All rights reserved. | 1 # Copyright (C) 2013 Google Inc. All rights reserved. |
2 # | 2 # |
3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
5 # met: | 5 # met: |
6 # | 6 # |
7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 def includes_for_cpp_class(class_name, relative_dir_posix): | 287 def includes_for_cpp_class(class_name, relative_dir_posix): |
288 return set([posixpath.join('bindings', relative_dir_posix, class_name + '.h'
)]) | 288 return set([posixpath.join('bindings', relative_dir_posix, class_name + '.h'
)]) |
289 | 289 |
290 | 290 |
291 INCLUDES_FOR_TYPE = { | 291 INCLUDES_FOR_TYPE = { |
292 'object': set(), | 292 'object': set(), |
293 'CompareHow': set(), | 293 'CompareHow': set(), |
294 'Dictionary': set(['bindings/v8/Dictionary.h']), | 294 'Dictionary': set(['bindings/v8/Dictionary.h']), |
295 'EventHandler': set(['bindings/v8/V8AbstractEventListener.h', | 295 'EventHandler': set(['bindings/v8/V8AbstractEventListener.h', |
296 'bindings/v8/V8EventListenerList.h']), | 296 'bindings/v8/V8EventListenerList.h']), |
297 'EventListener': set(['bindings/v8/BindingSecurity.h', | 297 'EventListener': set(['bindings/v8/BindingSecurity.h', # FIXME: replace wit
h [CheckSecurity=Frame] http://crbug.com/383699 |
298 'bindings/v8/V8EventListenerList.h', | 298 'bindings/v8/V8EventListenerList.h', |
299 'core/frame/LocalDOMWindow.h']), | 299 'core/frame/LocalDOMWindow.h']), # FIXME: move to Eve
ntTarget::frame |
300 'HTMLCollection': set(['bindings/core/v8/V8HTMLCollection.h', | 300 'HTMLCollection': set(['bindings/core/v8/V8HTMLCollection.h', |
301 'core/dom/ClassCollection.h', | 301 'core/dom/ClassCollection.h', |
302 'core/dom/TagCollection.h', | 302 'core/dom/TagCollection.h', |
303 'core/html/HTMLCollection.h', | 303 'core/html/HTMLCollection.h', |
304 'core/html/HTMLFormControlsCollection.h', | 304 'core/html/HTMLFormControlsCollection.h', |
305 'core/html/HTMLTableRowsCollection.h']), | 305 'core/html/HTMLTableRowsCollection.h']), |
306 'MediaQueryListListener': set(['core/css/MediaQueryListListener.h']), | 306 'MediaQueryListListener': set(['core/css/MediaQueryListListener.h']), |
307 'NodeList': set(['bindings/core/v8/V8NodeList.h', | 307 'NodeList': set(['bindings/core/v8/V8NodeList.h', |
308 'core/dom/NameNodeList.h', | 308 'core/dom/NameNodeList.h', |
309 'core/dom/NodeList.h', | 309 'core/dom/NodeList.h', |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
687 def cpp_value_to_v8_value(idl_type, cpp_value, isolate='info.GetIsolate()', crea
tion_context='info.Holder()', extended_attributes=None): | 687 def cpp_value_to_v8_value(idl_type, cpp_value, isolate='info.GetIsolate()', crea
tion_context='info.Holder()', extended_attributes=None): |
688 """Returns an expression that converts a C++ value to a V8 value.""" | 688 """Returns an expression that converts a C++ value to a V8 value.""" |
689 # the isolate parameter is needed for callback interfaces | 689 # the isolate parameter is needed for callback interfaces |
690 idl_type, cpp_value = preprocess_idl_type_and_value(idl_type, cpp_value, ext
ended_attributes) | 690 idl_type, cpp_value = preprocess_idl_type_and_value(idl_type, cpp_value, ext
ended_attributes) |
691 this_v8_conversion_type = idl_type.v8_conversion_type(extended_attributes) | 691 this_v8_conversion_type = idl_type.v8_conversion_type(extended_attributes) |
692 format_string = CPP_VALUE_TO_V8_VALUE[this_v8_conversion_type] | 692 format_string = CPP_VALUE_TO_V8_VALUE[this_v8_conversion_type] |
693 statement = format_string.format(cpp_value=cpp_value, isolate=isolate, creat
ion_context=creation_context) | 693 statement = format_string.format(cpp_value=cpp_value, isolate=isolate, creat
ion_context=creation_context) |
694 return statement | 694 return statement |
695 | 695 |
696 IdlType.cpp_value_to_v8_value = cpp_value_to_v8_value | 696 IdlType.cpp_value_to_v8_value = cpp_value_to_v8_value |
OLD | NEW |