| Index: Source/bindings/core/v8/DOMWrapperMap.h
|
| diff --git a/Source/bindings/core/v8/DOMWrapperMap.h b/Source/bindings/core/v8/DOMWrapperMap.h
|
| index 825a0a3b7ea3b711306496749281dbcd7c485a41..41d0271f5b5934a105a32bee3a2259d6a4e8e73b 100644
|
| --- a/Source/bindings/core/v8/DOMWrapperMap.h
|
| +++ b/Source/bindings/core/v8/DOMWrapperMap.h
|
| @@ -48,7 +48,7 @@ public:
|
| {
|
| }
|
|
|
| - v8::Handle<v8::Object> newLocal(v8::Isolate* isolate, KeyType* key)
|
| + v8::Local<v8::Object> newLocal(v8::Isolate* isolate, KeyType* key)
|
| {
|
| return m_map.Get(key);
|
| }
|
| @@ -68,7 +68,7 @@ public:
|
| return m_map.Contains(key);
|
| }
|
|
|
| - void set(KeyType* key, v8::Handle<v8::Object> wrapper, const WrapperTypeInfo* wrapperTypeInfo)
|
| + void set(KeyType* key, v8::Local<v8::Object> wrapper, const WrapperTypeInfo* wrapperTypeInfo)
|
| {
|
| ASSERT((getInternalField<KeyType, v8DOMWrapperObjectIndex>(wrapper)) == key);
|
| RELEASE_ASSERT(!containsKey(key)); // See crbug.com/368095
|
|
|