| Index: third_party/WebKit/Source/bindings/templates/web_agent_api_interface.cc.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/web_agent_api_interface.cc.tmpl b/third_party/WebKit/Source/bindings/templates/web_agent_api_interface.cc.tmpl
|
| index 3bcfc3e687d4d6c327991a91795d6fdcf920b4b1..48b8c0f91027f27eff2b36e18b6691978e7e426f 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/web_agent_api_interface.cc.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/web_agent_api_interface.cc.tmpl
|
| @@ -28,12 +28,15 @@ DEFINE_TRACE({{class_name.upper_camel_case}}) {
|
|
|
| // TODO(dglazkov): Implement attribute getter/setter generation
|
| {% for attribute in attributes %}
|
| -// {{attribute.return_type}} {{attribute.name}}
|
| +// {{attribute.type}} {{attribute.name}}
|
| {% endfor %}
|
|
|
| // TODO(dglazkov): Implement method generation
|
| {% for method in methods %}
|
| -// {{method.return_type}} {{class_name.upper_camel_case}}::{{method.name}}
|
| +// {{method.type}} {{class_name.upper_camel_case}}::{{method.name}}
|
| +{% for argument in method.arguments %}
|
| +// {{argument.type}} {{argument.name}}
|
| +{% endfor %}
|
| {% endfor %}
|
|
|
| {{class_name.upper_camel_case}}::{{class_name.upper_camel_case}}(blink::{{class_name.upper_camel_case}}* {{class_name.snake_case}})
|
|
|