| 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 #if defined(__clang__) | 5 #if defined(__clang__) |
| 6 #pragma clang diagnostic push | 6 #pragma clang diagnostic push |
| 7 #pragma clang diagnostic ignored "-Wunused-private-field" | 7 #pragma clang diagnostic ignored "-Wunused-private-field" |
| 8 #endif | 8 #endif |
| 9 | 9 |
| 10 #include "{{module.path}}.h" | 10 #include "{{module.path}}.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 {%- for interface in interfaces %} | 59 {%- for interface in interfaces %} |
| 60 {%- include "interface_definition.tmpl" %} | 60 {%- include "interface_definition.tmpl" %} |
| 61 {%- endfor %} | 61 {%- endfor %} |
| 62 {%- if namespace %} | 62 {%- if namespace %} |
| 63 } // namespace {{namespace}} | 63 } // namespace {{namespace}} |
| 64 {%- endif %} | 64 {%- endif %} |
| 65 | 65 |
| 66 #if defined(__clang__) | 66 #if defined(__clang__) |
| 67 #pragma clang diagnostic pop | 67 #pragma clang diagnostic pop |
| 68 #endif | 68 #endif |
| OLD | NEW |