| Index: Source/bindings/templates/interface.h
|
| diff --git a/Source/bindings/templates/interface.h b/Source/bindings/templates/interface.h
|
| index f00a499ca0c23221342951e2149f4a85a1cbae70..0117b0cd6c2047e1277b795c33972b1a6da6ddff 100644
|
| --- a/Source/bindings/templates/interface.h
|
| +++ b/Source/bindings/templates/interface.h
|
| @@ -20,7 +20,7 @@ class Dictionary;
|
| {% if named_constructor %}
|
| class {{v8_class}}Constructor {
|
| public:
|
| - static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
|
| + static v8::Local<v8::FunctionTemplate> domTemplate(v8::Isolate*);
|
| static const WrapperTypeInfo wrapperTypeInfo;
|
| };
|
|
|
| @@ -47,7 +47,7 @@ public:
|
| static {{cpp_class}}* toImpl(v8::Handle<v8::Object> object);
|
| {% else %}
|
| static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*);
|
| - static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
|
| + static v8::Local<v8::FunctionTemplate> domTemplate(v8::Isolate*);
|
| static {{cpp_class}}* toImpl(v8::Handle<v8::Object> object)
|
| {
|
| return blink::toScriptWrappable(object)->toImpl<{{cpp_class}}>();
|
|
|