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

Side by Side 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 unified diff | Download patch
OLDNEW
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_or_partial}}.h" 9 #include "{{v8_class_or_partial}}.h"
10 10
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 with context %} 486 with context %}
487 {% if is_partial or conditionally_enabled_methods %} 487 {% if is_partial or conditionally_enabled_methods %}
488 {{install_conditionally_enabled_methods()}} 488 {{install_conditionally_enabled_methods()}}
489 489
490 {% endif %} 490 {% endif %}
491 {% endblock %} 491 {% endblock %}
492 {##############################################################################} 492 {##############################################################################}
493 {% block to_active_dom_object %}{% endblock %} 493 {% block to_active_dom_object %}{% endblock %}
494 {% block get_shadow_object_template %}{% endblock %} 494 {% block get_shadow_object_template %}{% endblock %}
495 {% block ref_object_and_deref_object %}{% endblock %} 495 {% block ref_object_and_deref_object %}{% endblock %}
496 {% for method in methods if method.is_implemented_in_private_script %} 496 {% for method in methods if method.is_implemented_in_private_script and method.v isible %}
alogvinov 2015/05/05 11:29:57 I had to make this change to get rid of duplicate
497 {{method_implemented_in_private_script(method)}} 497 {{method_implemented_in_private_script(method)}}
498 {% endfor %} 498 {% endfor %}
499 {% for attribute in attributes if attribute.is_implemented_in_private_script %} 499 {% for attribute in attributes if attribute.is_implemented_in_private_script %}
500 {{attribute_getter_implemented_in_private_script(attribute)}} 500 {{attribute_getter_implemented_in_private_script(attribute)}}
501 {% if attribute.has_setter %} 501 {% if attribute.has_setter %}
502 {{attribute_setter_implemented_in_private_script(attribute)}} 502 {{attribute_setter_implemented_in_private_script(attribute)}}
503 {% endif %} 503 {% endif %}
504 {% endfor %} 504 {% endfor %}
505 {% block partial_interface %}{% endblock %} 505 {% block partial_interface %}{% endblock %}
506 } // namespace blink 506 } // namespace blink
507 {% endfilter %} 507 {% endfilter %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698