| Index: third_party/mojo/src/mojo/public/tools/bindings/generators/cpp_templates/interface_macros.tmpl
|
| diff --git a/third_party/mojo/src/mojo/public/tools/bindings/generators/cpp_templates/interface_macros.tmpl b/third_party/mojo/src/mojo/public/tools/bindings/generators/cpp_templates/interface_macros.tmpl
|
| deleted file mode 100644
|
| index 7644b2ef0440200b4b5d8844de69e55dbe9a9a8c..0000000000000000000000000000000000000000
|
| --- a/third_party/mojo/src/mojo/public/tools/bindings/generators/cpp_templates/interface_macros.tmpl
|
| +++ /dev/null
|
| @@ -1,23 +0,0 @@
|
| -{%- macro declare_params(prefix, parameters) %}
|
| -{%- for param in parameters -%}
|
| -{{param.kind|cpp_const_wrapper_type}} {{prefix}}{{param.name}}
|
| -{%- if not loop.last %}, {% endif %}
|
| -{%- endfor %}
|
| -{%- endmacro %}
|
| -
|
| -{%- macro declare_callback(method) -%}
|
| -mojo::Callback<void(
|
| -{%- for param in method.response_parameters -%}
|
| -{{param.kind|cpp_result_type}}
|
| -{%- if not loop.last %}, {% endif %}
|
| -{%- endfor -%}
|
| -)>
|
| -{%- endmacro -%}
|
| -
|
| -{%- macro declare_request_params(prefix, method) -%}
|
| -{{declare_params(prefix, method.parameters)}}
|
| -{%- if method.response_parameters != None -%}
|
| -{%- if method.parameters %}, {% endif -%}
|
| -const {{method.name}}Callback& callback
|
| -{%- endif -%}
|
| -{%- endmacro -%}
|
|
|