Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Unified Diff: third_party/WebKit/Source/bindings/templates/web_module_interface.cpp.tmpl

Issue 2648173002: Rename webmodule codegen bits to WebAgentAPI. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 %}

Powered by Google App Engine
This is Rietveld 408576698