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

Side by Side Diff: third_party/WebKit/Source/bindings/templates/legacy_callback_interface.h.tmpl

Issue 2837923003: Make NodeFilter a legacy callback interface. (Closed)
Patch Set: templates.gni, etc. Created 3 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 {% filter format_blink_cpp_source_code %}
2
3 {% include 'copyright_block.txt' %}
4 #ifndef {{v8_class}}_h
5 #define {{v8_class}}_h
6
7 {% for filename in header_includes %}
8 #include "{{filename}}"
9 {% endfor %}
10
11 namespace blink {
12
13 class {{v8_class}} final {
14 STATIC_ONLY({{v8_class}});
15 public:
16 static v8::Local<v8::FunctionTemplate> DomTemplate(v8::Isolate*, const DOMWrap perWorld&);
17 {{exported}} static const WrapperTypeInfo wrapperTypeInfo;
18 {{exported}} static void TypeErrorConstructorCallback(const v8::FunctionCallba ckInfo<v8::Value>&);
19 };
20
21 }
22 #endif // {{v8_class}}_h
23
24 {% endfilter %}{# format_blink_cpp_source_code #}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698