| Index: Source/bindings/tests/results/modules/V8TestInterface5.cpp
 | 
| diff --git a/Source/bindings/tests/results/modules/V8TestInterface5.cpp b/Source/bindings/tests/results/modules/V8TestInterface5.cpp
 | 
| index 219299c673de20673b6eaba6624eb3b8ac57e680..369b034844e125137676ad97b6eecac829d78d82 100644
 | 
| --- a/Source/bindings/tests/results/modules/V8TestInterface5.cpp
 | 
| +++ b/Source/bindings/tests/results/modules/V8TestInterface5.cpp
 | 
| @@ -328,7 +328,7 @@ static void TestInterface5ImplementationConstructorGetter(v8::Local<v8::String>,
 | 
|  static void TestInterface5ImplementationForceSetAttributeOnThis(v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
 | 
|  {
 | 
|      if (info.This()->IsObject())
 | 
| -        v8::Handle<v8::Object>::Cast(info.This())->ForceSet(name, v8Value);
 | 
| +        v8::Local<v8::Object>::Cast(info.This())->ForceSet(name, v8Value);
 | 
|  }
 | 
|  
 | 
|  static void TestInterface5ImplementationForceSetAttributeOnThisCallback(v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info)
 | 
| @@ -857,7 +857,7 @@ static void installV8TestInterface5Template(v8::Local<v8::FunctionTemplate> func
 | 
|          "toString", TestInterface5ImplementationV8Internal::toStringMethodCallback, 0, 0, V8DOMConfiguration::ExposedToAllScripts,
 | 
|      };
 | 
|      V8DOMConfiguration::installMethod(prototypeTemplate, defaultSignature, static_cast<v8::PropertyAttribute>(v8::DontDelete | v8::DontEnum), toStringMethodConfiguration, isolate);
 | 
| -    functionTemplate->SetNativeDataProperty(v8AtomicString(isolate, "staticStringAttribute"), TestInterface5ImplementationV8Internal::staticStringAttributeAttributeGetterCallback, TestInterface5ImplementationV8Internal::staticStringAttributeAttributeSetterCallback, v8::External::New(isolate, 0), static_cast<v8::PropertyAttribute>(v8::None), v8::Handle<v8::AccessorSignature>(), static_cast<v8::AccessControl>(v8::DEFAULT));
 | 
| +    functionTemplate->SetNativeDataProperty(v8AtomicString(isolate, "staticStringAttribute"), TestInterface5ImplementationV8Internal::staticStringAttributeAttributeGetterCallback, TestInterface5ImplementationV8Internal::staticStringAttributeAttributeSetterCallback, v8::External::New(isolate, 0), static_cast<v8::PropertyAttribute>(v8::None), v8::Local<v8::AccessorSignature>(), static_cast<v8::AccessControl>(v8::DEFAULT));
 | 
|  
 | 
|      // Custom toString template
 | 
|      functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData::from(isolate)->toStringTemplate());
 | 
| 
 |