Index: Source/bindings/core/v8/CustomElementBinding.cpp |
diff --git a/Source/bindings/core/v8/CustomElementBinding.cpp b/Source/bindings/core/v8/CustomElementBinding.cpp |
index 04526ea0b90197b9211c09b160d8b8cf3e23c788..51037062819019d38d47f7a63386541dc8c2b0e2 100644 |
--- a/Source/bindings/core/v8/CustomElementBinding.cpp |
+++ b/Source/bindings/core/v8/CustomElementBinding.cpp |
@@ -33,12 +33,12 @@ |
namespace blink { |
-PassOwnPtr<CustomElementBinding> CustomElementBinding::create(v8::Isolate* isolate, v8::Handle<v8::Object> prototype) |
+PassOwnPtr<CustomElementBinding> CustomElementBinding::create(v8::Isolate* isolate, v8::Local<v8::Object> prototype) |
{ |
return adoptPtr(new CustomElementBinding(isolate, prototype)); |
} |
-CustomElementBinding::CustomElementBinding(v8::Isolate* isolate, v8::Handle<v8::Object> prototype) |
+CustomElementBinding::CustomElementBinding(v8::Isolate* isolate, v8::Local<v8::Object> prototype) |
: m_prototype(isolate, prototype) |
{ |
ASSERT(!m_prototype.isEmpty()); |