| Index: third_party/WebKit/Source/bindings/templates/web_module_interface.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/web_module_interface.cpp.tmpl b/third_party/WebKit/Source/bindings/templates/web_module_interface.cpp.tmpl
|
| index af5afefa881e8c236ddfe677872e3b64121975c5..b42f6438f89ce16caa9e6ca1001720643cad3b5b 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/web_module_interface.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/web_module_interface.cpp.tmpl
|
| @@ -7,7 +7,7 @@
|
|
|
| // TODO(dglazkov): Implement generating includes.
|
| {% for filename in cpp_includes %}
|
| -#include "{{filename}}"
|
| +#include "Web{{filename}}.h"
|
| {% endfor %}
|
|
|
| namespace blink {
|
| @@ -22,12 +22,12 @@ namespace api {
|
|
|
| // TODO(dglazkov): Implement attribute getter/setter generation
|
| {% for attribute in attributes %}
|
| -// {{attribute.name}}
|
| +// {{attribute.return_type}} {{attribute.name}}
|
| {% endfor %}
|
|
|
| // TODO(dglazkov): Implement method generation
|
| {% for method in methods %}
|
| -// {{method.cpp_type}} Cpp{{class_name}}::{{method.name}}
|
| +// {{method.return_type}} Cpp{{class_name}}::{{method.name}}
|
| {% endfor %}
|
|
|
| } // namespace api
|
|
|