| OLD | NEW |
| 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 Loading... |
| 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 %} |
| OLD | NEW |