| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 {%- set header_guard = "%s_H_"| | 5 {%- set header_guard = "%s_H_"| |
| 6 format(module.path|upper|replace("/","_")|replace(".","_")) %} | 6 format(module.path|upper|replace("/","_")|replace(".","_")) %} |
| 7 | 7 |
| 8 #ifndef {{header_guard}} | 8 #ifndef {{header_guard}} |
| 9 #define {{header_guard}} | 9 #define {{header_guard}} |
| 10 | 10 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 {% for union in unions %} | 135 {% for union in unions %} |
| 136 {% include "union_serialization_declaration.tmpl" %} | 136 {% include "union_serialization_declaration.tmpl" %} |
| 137 {%- endfor %} | 137 {%- endfor %} |
| 138 {%- endif %} | 138 {%- endif %} |
| 139 | 139 |
| 140 {%- for namespace in namespaces_as_array|reverse %} | 140 {%- for namespace in namespaces_as_array|reverse %} |
| 141 } // namespace {{namespace}} | 141 } // namespace {{namespace}} |
| 142 {%- endfor %} | 142 {%- endfor %} |
| 143 | 143 |
| 144 #endif // {{header_guard}} | 144 #endif // {{header_guard}} |
| OLD | NEW |