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

Side by Side Diff: mojo/public/tools/bindings/generators/cpp_templates/enum_declaration.tmpl

Issue 814543006: Move //mojo/{public, edk} underneath //third_party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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
(Empty)
1 enum {{enum.name}} {
2 {%- for field in enum.fields %}
3 {%- if field.value %}
4 {{enum.name|to_all_caps}}_{{field.name}} = {{field.value|expression_to_text}},
5 {%- else %}
6 {{enum.name|to_all_caps}}_{{field.name}},
7 {%- endif %}
8 {%- endfor %}
9 };
OLDNEW
« no previous file with comments | « mojo/public/tools/BUILD.gn ('k') | mojo/public/tools/bindings/generators/cpp_templates/interface_declaration.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698