Index: Source/bindings/core/v8/WrapperTypeInfo.h |
diff --git a/Source/bindings/core/v8/WrapperTypeInfo.h b/Source/bindings/core/v8/WrapperTypeInfo.h |
index ebff8987631b7a99d4c5630c1449904681c77ee7..b4946b4b7ce41c06b931e1b6024ce69fcf8158fb 100644 |
--- a/Source/bindings/core/v8/WrapperTypeInfo.h |
+++ b/Source/bindings/core/v8/WrapperTypeInfo.h |
@@ -52,7 +52,7 @@ typedef v8::Local<v8::FunctionTemplate> (*DomTemplateFunction)(v8::Isolate*); |
typedef void (*RefObjectFunction)(ScriptWrappable*); |
typedef void (*DerefObjectFunction)(ScriptWrappable*); |
typedef void (*TraceFunction)(Visitor*, ScriptWrappable*); |
-typedef ActiveDOMObject* (*ToActiveDOMObjectFunction)(v8::Handle<v8::Object>); |
+typedef ActiveDOMObject* (*ToActiveDOMObjectFunction)(v8::Local<v8::Object>); |
typedef void (*ResolveWrapperReachabilityFunction)(v8::Isolate*, ScriptWrappable*, const v8::Persistent<v8::Object>&); |
typedef void (*InstallConditionallyEnabledMethodsFunction)(v8::Local<v8::Object>, v8::Isolate*); |
typedef void (*InstallConditionallyEnabledPropertiesFunction)(v8::Local<v8::Object>, v8::Isolate*); |
@@ -154,7 +154,7 @@ struct WrapperTypeInfo { |
installConditionallyEnabledPropertiesFunction(prototypeTemplate, isolate); |
} |
- ActiveDOMObject* toActiveDOMObject(v8::Handle<v8::Object> object) const |
+ ActiveDOMObject* toActiveDOMObject(v8::Local<v8::Object> object) const |
{ |
if (!toActiveDOMObjectFunction) |
return 0; |