| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceEventInitConstructor.cpp
 | 
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceEventInitConstructor.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceEventInitConstructor.cpp
 | 
| index a12328a41216974bdbf2dc5cd04f07e41894a191..8f2f65e41663f9e4bef5b9bc5a204ce9e1cd2e01 100644
 | 
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceEventInitConstructor.cpp
 | 
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceEventInitConstructor.cpp
 | 
| @@ -86,7 +86,7 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) {
 | 
|    TestInterfaceEventInit testInterfaceEventInit;
 | 
|    type = info[0];
 | 
|    if (!type.prepare())
 | 
| -      return;
 | 
| +    return;
 | 
|  
 | 
|    if (!isUndefinedOrNull(info[1]) && !info[1]->IsObject()) {
 | 
|      exceptionState.throwTypeError("parameter 2 ('testInterfaceEventInit') is not an object.");
 | 
| @@ -95,7 +95,7 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) {
 | 
|    }
 | 
|    V8TestInterfaceEventInit::toImpl(info.GetIsolate(), info[1], testInterfaceEventInit, exceptionState);
 | 
|    if (exceptionState.hadException())
 | 
| -      return;
 | 
| +    return;
 | 
|  
 | 
|    TestInterfaceEventInitConstructor* impl = TestInterfaceEventInitConstructor::create(type, testInterfaceEventInit);
 | 
|    v8::Local<v8::Object> wrapper = info.Holder();
 | 
| 
 |