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

Side by Side Diff: third_party/WebKit/Source/bindings/templates/blink_api_interface.cpp.tmpl

Issue 2648173002: Rename webmodule codegen bits to WebAgentAPI. (Closed)
Patch Set: Created 3 years, 11 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 {% filter format_blink_cpp_source_code %} 1 {% filter format_blink_cpp_source_code %}
2 2
3 {% include 'copyright_block.txt' %} 3 {% include 'copyright_block.txt' %}
4 4
5 #include "{{class_name}}.h" 5 #include "{{class_name}}.h"
6 6
7 // TODO(dglazkov): Implement generating includes. 7 // TODO(dglazkov): Implement generating includes.
8 {% for filename in cpp_includes %} 8 {% for filename in cpp_includes %}
9 #include "{{filename}}.h" 9 #include "{{filename}}.h"
10 {% endfor %} 10 {% endfor %}
(...skipping 15 matching lines...) Expand all
26 26
27 // TODO(dglazkov): Implement method generation 27 // TODO(dglazkov): Implement method generation
28 {% for method in methods %} 28 {% for method in methods %}
29 // {{method.return_type}} Cpp{{class_name}}::{{method.name}} 29 // {{method.return_type}} Cpp{{class_name}}::{{method.name}}
30 {% endfor %} 30 {% endfor %}
31 31
32 } // namespace api 32 } // namespace api
33 } // namespace blink 33 } // namespace blink
34 34
35 {% endfilter %} 35 {% endfilter %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698