OLD | NEW |
1 {# http://www.chromium.org/blink/coding-style#TOC-License #} | 1 {# http://www.chromium.org/blink/coding-style#TOC-License #} |
2 /* | 2 /* |
3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 {% if not method.overload_index or method.overloads %} | 107 {% if not method.overload_index or method.overloads %} |
108 {# A single callback is generated for overloaded methods #} | 108 {# A single callback is generated for overloaded methods #} |
109 {{method_callback(method, world_suffix)}} | 109 {{method_callback(method, world_suffix)}} |
110 {% endif %} | 110 {% endif %} |
111 {% if method.is_do_not_check_security %} | 111 {% if method.is_do_not_check_security %} |
112 {{origin_safe_method_getter(method, world_suffix)}} | 112 {{origin_safe_method_getter(method, world_suffix)}} |
113 {% endif %} | 113 {% endif %} |
114 {% endfor %} | 114 {% endfor %} |
115 {% endfor %} | 115 {% endfor %} |
116 {% block origin_safe_method_setter %}{% endblock %} | 116 {% block origin_safe_method_setter %}{% endblock %} |
| 117 {# Constructors #} |
| 118 {% block constructor %}{% endblock %} |
117 } // namespace {{cpp_class}}V8Internal | 119 } // namespace {{cpp_class}}V8Internal |
118 | 120 |
| 121 {% block constructor_callback %}{% endblock %} |
119 {% block visit_dom_wrapper %}{% endblock %} | 122 {% block visit_dom_wrapper %}{% endblock %} |
120 {% block class_attributes %}{% endblock %} | 123 {% block class_attributes %}{% endblock %} |
121 {% block class_accessors %}{% endblock %} | 124 {% block class_accessors %}{% endblock %} |
122 {% block class_methods %}{% endblock %} | 125 {% block class_methods %}{% endblock %} |
123 {% block configure_class_template %}{% endblock %} | 126 {% block configure_class_template %}{% endblock %} |
124 {% block get_template %}{% endblock %} | 127 {% block get_template %}{% endblock %} |
125 {% block has_instance_and_has_instance_in_any_world %}{% endblock %} | 128 {% block has_instance_and_has_instance_in_any_world %}{% endblock %} |
126 {% block install_per_context_attributes %}{% endblock %} | 129 {% block install_per_context_attributes %}{% endblock %} |
127 {% block install_per_context_methods %}{% endblock %} | 130 {% block install_per_context_methods %}{% endblock %} |
128 {% block to_active_dom_object %}{% endblock %} | 131 {% block to_active_dom_object %}{% endblock %} |
129 {% block wrap %}{% endblock %} | 132 {% block wrap %}{% endblock %} |
130 {% block create_wrapper %}{% endblock %} | 133 {% block create_wrapper %}{% endblock %} |
131 {% block deref_object_and_to_v8_no_inline %}{% endblock %} | 134 {% block deref_object_and_to_v8_no_inline %}{% endblock %} |
132 } // namespace WebCore | 135 } // namespace WebCore |
133 {% endfilter %} | 136 {% endfilter %} |
OLD | NEW |