| Index: Source/bindings/core/v8/ScriptWrappable.h
|
| diff --git a/Source/bindings/core/v8/ScriptWrappable.h b/Source/bindings/core/v8/ScriptWrappable.h
|
| index 46de8ca9493057c32a2b4382ebb3f61fb0a40315..1c270504fcfa2a087e43fa99fcfb5317d07898d8 100644
|
| --- a/Source/bindings/core/v8/ScriptWrappable.h
|
| +++ b/Source/bindings/core/v8/ScriptWrappable.h
|
| @@ -73,12 +73,12 @@ public:
|
| virtual const WrapperTypeInfo* wrapperTypeInfo() const = 0;
|
|
|
| // Creates and returns a new wrapper object.
|
| - virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*);
|
| + virtual v8::Local<v8::Object> wrap(v8::Local<v8::Object> creationContext, v8::Isolate*);
|
|
|
| // Associates the instance with the existing wrapper. Returns |wrapper|.
|
| - virtual v8::Handle<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Handle<v8::Object> wrapper);
|
| + virtual v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Local<v8::Object> wrapper);
|
|
|
| - void setWrapper(v8::Handle<v8::Object> wrapper, v8::Isolate* isolate, const WrapperTypeInfo* wrapperTypeInfo)
|
| + void setWrapper(v8::Local<v8::Object> wrapper, v8::Isolate* isolate, const WrapperTypeInfo* wrapperTypeInfo)
|
| {
|
| RELEASE_ASSERT(!containsWrapper());
|
| if (!*wrapper)
|
|
|