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

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

Issue 2495033003: Stop using v8_interface.interface_context in Web modules bindings. (Closed)
Patch Set: Removed the comment. Created 4 years, 1 month 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
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

Powered by Google App Engine
This is Rietveld 408576698