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

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

Issue 149993003: IDL compiler: [Custom=PropertyEnumerator] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 {% block indexed_property_getter %}{% endblock %} 131 {% block indexed_property_getter %}{% endblock %}
132 {% block indexed_property_getter_callback %}{% endblock %} 132 {% block indexed_property_getter_callback %}{% endblock %}
133 {% block indexed_property_setter %}{% endblock %} 133 {% block indexed_property_setter %}{% endblock %}
134 {% block indexed_property_setter_callback %}{% endblock %} 134 {% block indexed_property_setter_callback %}{% endblock %}
135 {% block indexed_property_deleter %}{% endblock %} 135 {% block indexed_property_deleter %}{% endblock %}
136 {% block indexed_property_deleter_callback %}{% endblock %} 136 {% block indexed_property_deleter_callback %}{% endblock %}
137 {% block named_property_getter %}{% endblock %} 137 {% block named_property_getter %}{% endblock %}
138 {% block named_property_getter_callback %}{% endblock %} 138 {% block named_property_getter_callback %}{% endblock %}
139 {% block named_property_setter %}{% endblock %} 139 {% block named_property_setter %}{% endblock %}
140 {% block named_property_setter_callback %}{% endblock %} 140 {% block named_property_setter_callback %}{% endblock %}
141 {% block named_property_query %}{% endblock %}
142 {% block named_property_query_callback %}{% endblock %}
141 {% block named_property_deleter %}{% endblock %} 143 {% block named_property_deleter %}{% endblock %}
142 {% block named_property_deleter_callback %}{% endblock %} 144 {% block named_property_deleter_callback %}{% endblock %}
143 {% block named_property_query_and_callback %}{% endblock %} 145 {% block named_property_enumerator %}{% endblock %}
144 {% block named_property_enumerator_and_callback %}{% endblock %} 146 {% block named_property_enumerator_callback %}{% endblock %}
145 } // namespace {{cpp_class}}V8Internal 147 } // namespace {{cpp_class}}V8Internal
146 148
147 {% block visit_dom_wrapper %}{% endblock %} 149 {% block visit_dom_wrapper %}{% endblock %}
148 {% block class_attributes %}{% endblock %} 150 {% block class_attributes %}{% endblock %}
149 {% block class_accessors %}{% endblock %} 151 {% block class_accessors %}{% endblock %}
150 {% block class_methods %}{% endblock %} 152 {% block class_methods %}{% endblock %}
151 {% block named_constructor %}{% endblock %} 153 {% block named_constructor %}{% endblock %}
152 {% block initialize_event %}{% endblock %} 154 {% block initialize_event %}{% endblock %}
153 {% block constructor_callback %}{% endblock %} 155 {% block constructor_callback %}{% endblock %}
154 {% block configure_class_template %}{% endblock %} 156 {% block configure_class_template %}{% endblock %}
155 {% block get_template %}{% endblock %} 157 {% block get_template %}{% endblock %}
156 {% block has_instance %}{% endblock %} 158 {% block has_instance %}{% endblock %}
157 {% block install_per_context_attributes %}{% endblock %} 159 {% block install_per_context_attributes %}{% endblock %}
158 {% block install_per_context_methods %}{% endblock %} 160 {% block install_per_context_methods %}{% endblock %}
159 {% block to_active_dom_object %}{% endblock %} 161 {% block to_active_dom_object %}{% endblock %}
160 {% block to_event_target %}{% endblock %} 162 {% block to_event_target %}{% endblock %}
161 {% block wrap %}{% endblock %} 163 {% block wrap %}{% endblock %}
162 {% block create_wrapper %}{% endblock %} 164 {% block create_wrapper %}{% endblock %}
163 {% block deref_object_and_to_v8_no_inline %}{% endblock %} 165 {% block deref_object_and_to_v8_no_inline %}{% endblock %}
164 } // namespace WebCore 166 } // namespace WebCore
165 {% endfilter %} 167 {% endfilter %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698