Chromium Code Reviews| Index: Source/bindings/templates/interface_base.cpp |
| diff --git a/Source/bindings/templates/interface_base.cpp b/Source/bindings/templates/interface_base.cpp |
| index 5799a387cd3fb46f24e5aacc9844377beee6c17f..4a056d9f7b9ebbfabba7e6eab64c5fd8c583c0f9 100644 |
| --- a/Source/bindings/templates/interface_base.cpp |
| +++ b/Source/bindings/templates/interface_base.cpp |
| @@ -493,7 +493,7 @@ static void install{{v8_class}}Template(v8::Local<v8::FunctionTemplate> function |
| {% block to_active_dom_object %}{% endblock %} |
| {% block get_shadow_object_template %}{% endblock %} |
| {% block ref_object_and_deref_object %}{% endblock %} |
| -{% for method in methods if method.is_implemented_in_private_script %} |
| +{% for method in methods if method.is_implemented_in_private_script and method.visible %} |
|
alogvinov
2015/05/05 11:29:57
I had to make this change to get rid of duplicate
|
| {{method_implemented_in_private_script(method)}} |
| {% endfor %} |
| {% for attribute in attributes if attribute.is_implemented_in_private_script %} |