OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file has been auto-generated by {{code_generator}}. DO NOT MODIFY! | 5 // This file has been auto-generated by {{code_generator}}. DO NOT MODIFY! |
6 | 6 |
7 #include "config.h" | 7 #include "config.h" |
8 {% filter conditional(conditional_string) %} | 8 {% filter conditional(conditional_string) %} |
9 #include "{{v8_class}}.h" | 9 #include "{{v8_class}}.h" |
10 | 10 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 {% if not method.overload_index or method.overloads %} | 102 {% if not method.overload_index or method.overloads %} |
103 {# A single callback is generated for overloaded methods #} | 103 {# A single callback is generated for overloaded methods #} |
104 {{method_callback(method, world_suffix)}} | 104 {{method_callback(method, world_suffix)}} |
105 {% endif %} | 105 {% endif %} |
106 {% if method.is_do_not_check_security %} | 106 {% if method.is_do_not_check_security %} |
107 {{origin_safe_method_getter(method, world_suffix)}} | 107 {{origin_safe_method_getter(method, world_suffix)}} |
108 {% endif %} | 108 {% endif %} |
109 {% endfor %} | 109 {% endfor %} |
110 {% endif %} | 110 {% endif %} |
111 {% endfor %} | 111 {% endfor %} |
| 112 {% if is_iterable %} |
| 113 namespace symbol { |
| 114 {% for world_suffix in iterator_method.world_suffixes %} |
| 115 {{generate_method(iterator_method, world_suffix)}} |
| 116 {{method_callback(iterator_method, world_suffix, '::symbol')}} |
| 117 {% endfor %} |
| 118 } // namespace symbol |
| 119 {% endif %} |
112 {% block origin_safe_method_setter %}{% endblock %} | 120 {% block origin_safe_method_setter %}{% endblock %} |
113 {# Constructors #} | 121 {# Constructors #} |
114 {% for constructor in constructors %} | 122 {% for constructor in constructors %} |
115 {{generate_constructor(constructor)}} | 123 {{generate_constructor(constructor)}} |
116 {% endfor %} | 124 {% endfor %} |
117 {% block overloaded_constructor %}{% endblock %} | 125 {% block overloaded_constructor %}{% endblock %} |
118 {% block event_constructor %}{% endblock %} | 126 {% block event_constructor %}{% endblock %} |
119 {# Special operations (methods) #} | 127 {# Special operations (methods) #} |
120 {% block indexed_property_getter %}{% endblock %} | 128 {% block indexed_property_getter %}{% endblock %} |
121 {% block indexed_property_getter_callback %}{% endblock %} | 129 {% block indexed_property_getter_callback %}{% endblock %} |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 {{method_implemented_in_private_script(method)}} | 168 {{method_implemented_in_private_script(method)}} |
161 {% endfor %} | 169 {% endfor %} |
162 {% for attribute in attributes if attribute.is_implemented_in_private_script %} | 170 {% for attribute in attributes if attribute.is_implemented_in_private_script %} |
163 {{attribute_getter_implemented_in_private_script(attribute)}} | 171 {{attribute_getter_implemented_in_private_script(attribute)}} |
164 {% if not attribute.is_read_only or attribute.put_forwards %} | 172 {% if not attribute.is_read_only or attribute.put_forwards %} |
165 {{attribute_setter_implemented_in_private_script(attribute)}} | 173 {{attribute_setter_implemented_in_private_script(attribute)}} |
166 {% endif %} | 174 {% endif %} |
167 {% endfor %} | 175 {% endfor %} |
168 } // namespace blink | 176 } // namespace blink |
169 {% endfilter %} | 177 {% endfilter %} |
OLD | NEW |