| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor2.cpp
 | 
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor2.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor2.cpp
 | 
| index 380f020e8daddc269c4f444713459202f7a518ab..62e380ff1f01e35c9a14bcecd66d0526e414c34a 100644
 | 
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor2.cpp
 | 
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor2.cpp
 | 
| @@ -22,7 +22,7 @@ namespace blink {
 | 
|  #pragma clang diagnostic push
 | 
|  #pragma clang diagnostic ignored "-Wglobal-constructors"
 | 
|  #endif
 | 
| -const WrapperTypeInfo V8TestInterfaceNamedConstructor2::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceNamedConstructor2::domTemplate, V8TestInterfaceNamedConstructor2::refObject, V8TestInterfaceNamedConstructor2::derefObject, V8TestInterfaceNamedConstructor2::trace, 0, 0, V8TestInterfaceNamedConstructor2::preparePrototypeAndInterfaceObject, V8TestInterfaceNamedConstructor2::installConditionallyEnabledProperties, "TestInterfaceNamedConstructor2", 0, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::NotInheritFromEventTarget, WrapperTypeInfo::Independent, WrapperTypeInfo::RefCountedObject };
 | 
| +const WrapperTypeInfo V8TestInterfaceNamedConstructor2::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceNamedConstructor2::domTemplate, V8TestInterfaceNamedConstructor2::trace, 0, 0, V8TestInterfaceNamedConstructor2::preparePrototypeAndInterfaceObject, V8TestInterfaceNamedConstructor2::installConditionallyEnabledProperties, "TestInterfaceNamedConstructor2", 0, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::NotInheritFromEventTarget, WrapperTypeInfo::Independent };
 | 
|  #if defined(COMPONENT_BUILD) && defined(WIN32) && COMPILER(CLANG)
 | 
|  #pragma clang diagnostic pop
 | 
|  #endif
 | 
| @@ -42,7 +42,7 @@ namespace TestInterfaceNamedConstructor2V8Internal {
 | 
|  #pragma clang diagnostic push
 | 
|  #pragma clang diagnostic ignored "-Wglobal-constructors"
 | 
|  #endif
 | 
| -const WrapperTypeInfo V8TestInterfaceNamedConstructor2Constructor::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceNamedConstructor2Constructor::domTemplate, V8TestInterfaceNamedConstructor2::refObject, V8TestInterfaceNamedConstructor2::derefObject, V8TestInterfaceNamedConstructor2::trace, 0, 0, V8TestInterfaceNamedConstructor2::preparePrototypeAndInterfaceObject, V8TestInterfaceNamedConstructor2::installConditionallyEnabledProperties, "TestInterfaceNamedConstructor2", 0, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::NotInheritFromEventTarget, WrapperTypeInfo::Independent, WrapperTypeInfo::RefCountedObject };
 | 
| +const WrapperTypeInfo V8TestInterfaceNamedConstructor2Constructor::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceNamedConstructor2Constructor::domTemplate, V8TestInterfaceNamedConstructor2::trace, 0, 0, V8TestInterfaceNamedConstructor2::preparePrototypeAndInterfaceObject, V8TestInterfaceNamedConstructor2::installConditionallyEnabledProperties, "TestInterfaceNamedConstructor2", 0, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::NotInheritFromEventTarget, WrapperTypeInfo::Independent };
 | 
|  #if defined(COMPONENT_BUILD) && defined(WIN32) && COMPILER(CLANG)
 | 
|  #pragma clang diagnostic pop
 | 
|  #endif
 | 
| @@ -68,7 +68,7 @@ static void V8TestInterfaceNamedConstructor2ConstructorCallback(const v8::Functi
 | 
|          if (!stringArg.prepare())
 | 
|              return;
 | 
|      }
 | 
| -    RefPtr<TestInterfaceNamedConstructor2> impl = TestInterfaceNamedConstructor2::createForJSConstructor(stringArg);
 | 
| +    TestInterfaceNamedConstructor2* impl = TestInterfaceNamedConstructor2::createForJSConstructor(stringArg);
 | 
|      v8::Local<v8::Object> wrapper = info.Holder();
 | 
|      wrapper = impl->associateWithWrapper(info.GetIsolate(), &V8TestInterfaceNamedConstructor2Constructor::wrapperTypeInfo, wrapper);
 | 
|      v8SetReturnValue(info, wrapper);
 | 
| @@ -125,14 +125,4 @@ TestInterfaceNamedConstructor2* V8TestInterfaceNamedConstructor2::toImplWithType
 | 
|      return hasInstance(value, isolate) ? toImpl(v8::Local<v8::Object>::Cast(value)) : 0;
 | 
|  }
 | 
|  
 | 
| -void V8TestInterfaceNamedConstructor2::refObject(ScriptWrappable* scriptWrappable)
 | 
| -{
 | 
| -    scriptWrappable->toImpl<TestInterfaceNamedConstructor2>()->ref();
 | 
| -}
 | 
| -
 | 
| -void V8TestInterfaceNamedConstructor2::derefObject(ScriptWrappable* scriptWrappable)
 | 
| -{
 | 
| -    scriptWrappable->toImpl<TestInterfaceNamedConstructor2>()->deref();
 | 
| -}
 | 
| -
 | 
|  } // namespace blink
 | 
| 
 |