Index: Source/bindings/templates/interface_base.cpp |
diff --git a/Source/bindings/templates/interface_base.cpp b/Source/bindings/templates/interface_base.cpp |
index 9a74d116ab810f1f44dce275e1bfa937d09cecf1..e5671a7723d3a83c44e1b4a413ff26ffdcc77b20 100644 |
--- a/Source/bindings/templates/interface_base.cpp |
+++ b/Source/bindings/templates/interface_base.cpp |
@@ -263,9 +263,9 @@ static const V8DOMConfiguration::MethodConfiguration {{v8_class}}Methods[] = { |
{% from 'attributes.cpp' import attribute_configuration with context %} |
{% from 'constants.cpp' import install_constants with context %} |
{% if has_partial_interface or is_partial %} |
-void {{v8_class_or_partial}}::install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate) |
+void {{v8_class_or_partial}}::install{{v8_class}}Template(v8::Local<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate) |
{% else %} |
-static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate) |
+static void install{{v8_class}}Template(v8::Local<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate) |
{% endif %} |
{ |
{% if is_partial %} |