| Index: Source/bindings/v8/custom/V8CustomEventCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8CustomEventCustom.cpp b/Source/bindings/v8/custom/V8CustomEventCustom.cpp
|
| index 91b63f68c463ab4563f305fc0240a358533b20fe..bc6d3fc8ecfd33a977036b0a331d01b76393d874 100644
|
| --- a/Source/bindings/v8/custom/V8CustomEventCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8CustomEventCustom.cpp
|
| @@ -83,7 +83,7 @@ void V8CustomEvent::initCustomEventMethodCustom(const v8::FunctionCallbackInfo<v
|
| CustomEvent* event = V8CustomEvent::toNative(info.Holder());
|
| ASSERT(!event->serializedDetail());
|
|
|
| - V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, typeArg, info[0]);
|
| + V8STRINGRESOURCE_PREPARE_VOID(V8StringResource<>, typeArg, info[0]);
|
| V8TRYCATCH_VOID(bool, canBubbleArg, info[1]->BooleanValue());
|
| V8TRYCATCH_VOID(bool, cancelableArg, info[2]->BooleanValue());
|
| v8::Handle<v8::Value> detailsArg = info[3];
|
|
|