| Index: third_party/WebKit/Source/bindings/templates/interface.h.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/interface.h.tmpl b/third_party/WebKit/Source/bindings/templates/interface.h.tmpl
|
| index 36a395cf39eda02f5d7f5708f6e6838b7cd158e2..b3104f256644f947903f91d6d706e7cf7f8fa8b3 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/interface.h.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/interface.h.tmpl
|
| @@ -62,9 +62,6 @@ class {{v8_class}} {
|
| static void {{method.name}}MethodEpilogueCustom(const v8::FunctionCallbackInfo<v8::Value>&, {{cpp_class}}*);
|
| {% endif %}
|
| {% endfor %}
|
| - {% if constructors or has_custom_constructor or has_html_constructor %}
|
| - static void constructorCallback(const v8::FunctionCallbackInfo<v8::Value>&);
|
| - {% endif %}
|
| {% if has_custom_constructor %}
|
| static void constructorCustom(const v8::FunctionCallbackInfo<v8::Value>&);
|
| {% endif %}
|
| @@ -151,6 +148,10 @@ class {{v8_class}} {
|
| {% endfor %}
|
|
|
| // Callback functions
|
| + {% if constructors or has_custom_constructor or has_html_constructor %}
|
| + {{exported}}static void constructorCallback(const v8::FunctionCallbackInfo<v8::Value>&);
|
| +
|
| + {% endif %}
|
| {% for constant in constants | has_special_getter %}
|
| {{exported}}static void {{constant.name}}ConstantGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>&);
|
| {% endfor %}
|
|
|