Index: Source/bindings/templates/interface.cpp |
diff --git a/Source/bindings/templates/interface.cpp b/Source/bindings/templates/interface.cpp |
index 7a52a835454614793d759fa1a00727b8ec181018..be7be75e67e31b4f83f2577ec987b08d7e23eac7 100644 |
--- a/Source/bindings/templates/interface.cpp |
+++ b/Source/bindings/templates/interface.cpp |
@@ -647,7 +647,7 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) |
if (exceptionState.throwIfNeeded()) |
return; |
{% else %} |
- RefPtr<{{cpp_class}}> event = {{cpp_class}}::create(type, eventInit); |
+ RefPtrWillBeRawPtr<{{cpp_class}}> event = {{cpp_class}}::create(type, eventInit); |
{% endif %} |
{% if any_type_attributes and not interface_name == 'ErrorEvent' %} |
{# If we're in an isolated world, create a SerializedScriptValue and store |