| 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
|
| deleted file mode 100644
|
| index b91832570379fa26d733f1a750f68d1074ba7f8b..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/bindings/templates/web_module_interface.cpp.tmpl
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -{% filter format_blink_cpp_source_code %}
|
| -
|
| -{% include 'copyright_block.txt' %}
|
| -
|
| -#include "{{class_name}}.h"
|
| -
|
| -// TODO(dglazkov): Implement generating includes.
|
| -{% for filename in cpp_includes %}
|
| -#include "{{filename}}.h"
|
| -{% endfor %}
|
| -
|
| -namespace blink {
|
| -namespace api {
|
| -
|
| -// TODO(dglazkov): Implement constant generation
|
| -{% for constant in constants %}
|
| -// {{ constant.name }}
|
| -{% endfor %}
|
| -
|
| -// TODO(dglazkov): Implement constructor generation
|
| -
|
| -// TODO(dglazkov): Implement attribute getter/setter generation
|
| -{% for attribute in attributes %}
|
| -// {{attribute.return_type}} {{attribute.name}}
|
| -{% endfor %}
|
| -
|
| -// TODO(dglazkov): Implement method generation
|
| -{% for method in methods %}
|
| -// {{method.return_type}} Cpp{{class_name}}::{{method.name}}
|
| -{% endfor %}
|
| -
|
| -} // namespace api
|
| -} // namespace blink
|
| -
|
| -{% endfilter %}
|
|
|