| 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 // TODO(dglazkov): Implement generating the header file. | 5 // TODO(dglazkov): Use chromium-style path. |
| 6 #ifndef {{class_name}}_h |
| 7 #define {{class_name}}_h |
| 6 | 8 |
| 7 {% endfilter %} | 9 {% for include_file in header_includes %} |
| 10 #include "{{include_file}}" |
| 11 {% endfor %} |
| 12 |
| 13 namespace blink { |
| 14 namespace api { |
| 15 |
| 16 class {{class_name}} { |
| 17 |
| 18 }; |
| 19 |
| 20 } // namespace api |
| 21 } // namespace blink |
| 22 |
| 23 #endif // {{class_name}}_h |
| 24 |
| 25 {% endfilter %} |
| OLD | NEW |