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

Unified Diff: Source/bindings/templates/interface_base.cpp

Issue 1084923002: Wake Lock API implementation (Blink part) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Applied review comments 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 side-by-side diff with in-line comments
Download patch
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 %}

Powered by Google App Engine
This is Rietveld 408576698