| Index: Source/bindings/tests/results/V8TestNode.h
 | 
| diff --git a/Source/bindings/tests/results/V8TestNode.h b/Source/bindings/tests/results/V8TestNode.h
 | 
| index dd0f15aadcbc69760f86830676ec7260c88a1dfb..16b3205876f1e6cf0d58c51d8db67622aa90b6c5 100644
 | 
| --- a/Source/bindings/tests/results/V8TestNode.h
 | 
| +++ b/Source/bindings/tests/results/V8TestNode.h
 | 
| @@ -83,6 +83,21 @@ inline v8::Handle<v8::Value> toV8(TestNode* impl, v8::Handle<v8::Object> creatio
 | 
|      return wrap(impl, creationContext, isolate);
 | 
|  }
 | 
|  
 | 
| +inline UnsafePersistent<v8::Object> toV8Persistent(TestNode* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
 | 
| +{
 | 
| +    ASSERT(impl);
 | 
| +
 | 
| +    UnsafePersistent<v8::Object> wrapperPersistent = DOMDataStore::getWrapperPersistent<V8TestNode>(impl, isolate);
 | 
| +    if (LIKELY(!wrapperPersistent.isEmpty()))
 | 
| +        return wrapperPersistent;
 | 
| +
 | 
| +    wrap(impl, creationContext, isolate);
 | 
| +
 | 
| +    wrapperPersistent = DOMDataStore::getWrapperPersistent<V8TestNode>(impl, isolate);
 | 
| +    ASSERT(!wrapperPersistent.isEmpty());
 | 
| +    return wrapperPersistent;
 | 
| +}
 | 
| +
 | 
|  template<typename CallbackInfo>
 | 
|  inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestNode* impl, v8::Handle<v8::Object> creationContext)
 | 
|  {
 | 
| 
 |