Chromium Code Reviews| Index: Source/bindings/scripts/code_generator_v8.pm |
| diff --git a/Source/bindings/scripts/code_generator_v8.pm b/Source/bindings/scripts/code_generator_v8.pm |
| index 2f46e54083b7022b7ef4cc02693a1699fac7ec45..c67d1cc1960dfe7da901df2ee21092096508c1b6 100644 |
| --- a/Source/bindings/scripts/code_generator_v8.pm |
| +++ b/Source/bindings/scripts/code_generator_v8.pm |
| @@ -897,6 +897,7 @@ END |
| die "Can't suppress toV8 for subclass\n" if $interface->parent; |
| } elsif ($noWrap) { |
| $header{nameSpaceWebCore}->add(<<END); |
| + |
|
Nils Barth (inactive)
2013/11/22 06:10:48
Inconsistent spacing, caught by template and fixed
|
| class ${nativeType}; |
| v8::Handle<v8::Value> toV8(${nativeType}*, v8::Handle<v8::Object> creationContext, v8::Isolate*); |
| @@ -917,7 +918,6 @@ inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, ${nativeType} |
| { |
| v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate())); |
| } |
| - |
| END |
| } else { |
| if ($customWrap) { |