OLD | NEW |
(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 #} |
OLD | NEW |