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

Side by Side Diff: third_party/WebKit/Source/bindings/templates/web_agent_api_interface.h.tmpl

Issue 2648173002: Rename webmodule codegen bits to WebAgentAPI. (Closed)
Patch Set: Changed to WebAgentAPI. Created 3 years, 9 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 #ifndef WEB_API_{{class_name.macro_case}}_H 5 #ifndef WEB_API_{{class_name.macro_case}}_H
6 #define WEB_API_{{class_name.macro_case}}_H 6 #define WEB_API_{{class_name.macro_case}}_H
7 7
8 {% for include_file in header_includes %} 8 {% for include_file in header_includes %}
9 #include "{{include_file}}" 9 #include "{{include_file}}"
10 {% endfor %} 10 {% endfor %}
(...skipping 26 matching lines...) Expand all
37 private: 37 private:
38 blink::Member<blink::{{class_name.upper_camel_case}}> {{class_name.snake_case} }_; 38 blink::Member<blink::{{class_name.upper_camel_case}}> {{class_name.snake_case} }_;
39 {% endif %} 39 {% endif %}
40 }; 40 };
41 41
42 } // namespace web 42 } // namespace web
43 43
44 #endif // WEB_API_{{class_name.macro_case}}_H 44 #endif // WEB_API_{{class_name.macro_case}}_H
45 45
46 {% endfilter %} 46 {% endfilter %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698