| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.cpp
|
| index e65b2d32793b708ef1ab3479341644239a23a7a3..23df60f535d18495925bbe4079cd3e2d00c9545c 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.cpp
|
| @@ -214,7 +214,7 @@ static void hasMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
| V8StringResource<> value;
|
| value = info[0];
|
| if (!value.prepare())
|
| - return;
|
| + return;
|
|
|
| bool result = impl->hasForBinding(scriptState, value, exceptionState);
|
| if (exceptionState.hadException()) {
|
| @@ -242,7 +242,7 @@ static void addMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
| V8StringResource<> value;
|
| value = info[0];
|
| if (!value.prepare())
|
| - return;
|
| + return;
|
|
|
| TestInterfaceGarbageCollected* result = impl->addForBinding(scriptState, value, exceptionState);
|
| if (exceptionState.hadException()) {
|
| @@ -287,7 +287,7 @@ static void deleteMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
| V8StringResource<> value;
|
| value = info[0];
|
| if (!value.prepare())
|
| - return;
|
| + return;
|
|
|
| bool result = impl->deleteForBinding(scriptState, value, exceptionState);
|
| if (exceptionState.hadException()) {
|
| @@ -327,7 +327,7 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
| V8StringResource<> str;
|
| str = info[0];
|
| if (!str.prepare())
|
| - return;
|
| + return;
|
|
|
| TestInterfaceGarbageCollected* impl = TestInterfaceGarbageCollected::create(str);
|
| v8::Local<v8::Object> wrapper = info.Holder();
|
|
|