Index: Source/modules/speech/SpeechSynthesisUtterance.cpp |
diff --git a/Source/modules/speech/SpeechSynthesisUtterance.cpp b/Source/modules/speech/SpeechSynthesisUtterance.cpp |
index 8f72d303280eff0be875e0449a10d887ef5a2986..b2af9d30bc26ccd9d9ab31b73cf69dc037ad5928 100644 |
--- a/Source/modules/speech/SpeechSynthesisUtterance.cpp |
+++ b/Source/modules/speech/SpeechSynthesisUtterance.cpp |
@@ -30,7 +30,7 @@ namespace WebCore { |
SpeechSynthesisUtterance* SpeechSynthesisUtterance::create(ExecutionContext* context, const String& text) |
{ |
- return adoptRefCountedGarbageCollected(new SpeechSynthesisUtterance(context, text)); |
+ return new SpeechSynthesisUtterance(context, text); |
} |
SpeechSynthesisUtterance::SpeechSynthesisUtterance(ExecutionContext* context, const String& text) |