| OLD | NEW |
| 1 {% include 'copyright_block.txt' %} | 1 {% include 'copyright_block.txt' %} |
| 2 #include "config.h" | 2 #include "config.h" |
| 3 {% filter conditional(conditional_string) %} | 3 {% filter conditional(conditional_string) %} |
| 4 #include "{{v8_class_or_partial}}.h" | 4 #include "{{v8_class_or_partial}}.h" |
| 5 | 5 |
| 6 {% for filename in cpp_includes if filename != '%s.h' % cpp_class_or_partial %} | 6 {% for filename in cpp_includes if filename != '%s.h' % cpp_class_or_partial %} |
| 7 #include "{{filename}}" | 7 #include "{{filename}}" |
| 8 {% endfor %} | 8 {% endfor %} |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 {% block has_instance %}{% endblock %} | 475 {% block has_instance %}{% endblock %} |
| 476 {% block to_impl %}{% endblock %} | 476 {% block to_impl %}{% endblock %} |
| 477 {% block to_impl_with_type_check %}{% endblock %} | 477 {% block to_impl_with_type_check %}{% endblock %} |
| 478 {% block install_conditional_attributes %}{% endblock %} | 478 {% block install_conditional_attributes %}{% endblock %} |
| 479 {##############################################################################} | 479 {##############################################################################} |
| 480 {% block prepare_prototype_object %}{% endblock %} | 480 {% block prepare_prototype_object %}{% endblock %} |
| 481 {##############################################################################} | 481 {##############################################################################} |
| 482 {% block to_active_dom_object %}{% endblock %} | 482 {% block to_active_dom_object %}{% endblock %} |
| 483 {% block get_shadow_object_template %}{% endblock %} | 483 {% block get_shadow_object_template %}{% endblock %} |
| 484 {% block ref_object_and_deref_object %}{% endblock %} | 484 {% block ref_object_and_deref_object %}{% endblock %} |
| 485 {% for method in methods if method.is_implemented_in_private_script %} | 485 {% for method in methods if method.is_implemented_in_private_script and method.v
isible %} |
| 486 {{method_implemented_in_private_script(method)}} | 486 {{method_implemented_in_private_script(method)}} |
| 487 {% endfor %} | 487 {% endfor %} |
| 488 {% for attribute in attributes if attribute.is_implemented_in_private_script %} | 488 {% for attribute in attributes if attribute.is_implemented_in_private_script %} |
| 489 {{attribute_getter_implemented_in_private_script(attribute)}} | 489 {{attribute_getter_implemented_in_private_script(attribute)}} |
| 490 {% if attribute.has_setter %} | 490 {% if attribute.has_setter %} |
| 491 {{attribute_setter_implemented_in_private_script(attribute)}} | 491 {{attribute_setter_implemented_in_private_script(attribute)}} |
| 492 {% endif %} | 492 {% endif %} |
| 493 {% endfor %} | 493 {% endfor %} |
| 494 {% block partial_interface %}{% endblock %} | 494 {% block partial_interface %}{% endblock %} |
| 495 } // namespace blink | 495 } // namespace blink |
| 496 {% endfilter %} | 496 {% endfilter %} |
| OLD | NEW |