| OLD | NEW |
| 1 // NOTE: This file was generated by the Mojo bindings generator. | 1 // NOTE: This file was generated by the Mojo bindings generator. |
| 2 #include "{{module.path}}.h" | 2 #include "{{module.path}}.h" |
| 3 | 3 |
| 4 #include <math.h> | 4 #include <math.h> |
| 5 #include <ostream> | 5 #include <ostream> |
| 6 | 6 |
| 7 #include "mojo/public/cpp/bindings/lib/array_serialization.h" | 7 #include "mojo/public/cpp/bindings/lib/array_serialization.h" |
| 8 #include "mojo/public/cpp/bindings/lib/bindings_serialization.h" | 8 #include "mojo/public/cpp/bindings/lib/bindings_serialization.h" |
| 9 #include "mojo/public/cpp/bindings/lib/bounds_checker.h" | 9 #include "mojo/public/cpp/bindings/lib/bounds_checker.h" |
| 10 #include "mojo/public/cpp/bindings/lib/map_data_internal.h" | 10 #include "mojo/public/cpp/bindings/lib/map_data_internal.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 namespace {{namespace}} { | 21 namespace {{namespace}} { |
| 22 {%- endfor %} | 22 {%- endfor %} |
| 23 | 23 |
| 24 // --- Interface definitions --- | 24 // --- Interface definitions --- |
| 25 {%- for interface in interfaces %} | 25 {%- for interface in interfaces %} |
| 26 {%- include "interface_definition.tmpl" %} | 26 {%- include "interface_definition.tmpl" %} |
| 27 {%- endfor %} | 27 {%- endfor %} |
| 28 | 28 |
| 29 {%- for namespace in namespaces_as_array|reverse %} | 29 {%- for namespace in namespaces_as_array|reverse %} |
| 30 } // namespace {{namespace}} | 30 } // namespace {{namespace}} |
| 31 {%- endfor %} | 31 {%- endfor %} |
| OLD | NEW |