| Index: Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp
 | 
| diff --git a/Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp b/Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp
 | 
| index 2ed0f3c448a6cbba9cf5cd08104623dd527241a6..a37b55460955fc6c190ad0b109f60bc6eb61b352 100644
 | 
| --- a/Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp
 | 
| +++ b/Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp
 | 
| @@ -46,11 +46,11 @@ static void constructor1(const v8::FunctionCallbackInfo<v8::Value>& info)
 | 
|  static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info)
 | 
|  {
 | 
|      ExceptionState exceptionState(ExceptionState::ConstructionContext, "TestInterfaceConstructor4", info.Holder(), info.GetIsolate());
 | 
| -    V8StringResource<> scalarValueStringArg;
 | 
| +    V8StringResource<> usvStringArg;
 | 
|      {
 | 
| -        TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(scalarValueStringArg, toScalarValueString(info[0], exceptionState), exceptionState);
 | 
| +        TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(usvStringArg, toUSVString(info[0], exceptionState), exceptionState);
 | 
|      }
 | 
| -    RefPtr<TestInterfaceConstructor4> impl = TestInterfaceConstructor4::create(scalarValueStringArg);
 | 
| +    RefPtr<TestInterfaceConstructor4> impl = TestInterfaceConstructor4::create(usvStringArg);
 | 
|      v8::Handle<v8::Object> wrapper = info.Holder();
 | 
|      impl->associateWithWrapper(&V8TestInterfaceConstructor4::wrapperTypeInfo, wrapper, info.GetIsolate());
 | 
|      v8SetReturnValue(info, wrapper);
 | 
| 
 |