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

Side by Side Diff: Source/bindings/templates/interface_base.cpp

Issue 1113023002: IDL: Check method.visible for methods implemented in private script (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 %}
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698