| Index: Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| diff --git a/Source/modules/speech/SpeechSynthesisUtterance.cpp b/Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| index 8f72d303280eff0be875e0449a10d887ef5a2986..497e48761fa08e53fc72fef7102be7ce33ae4514 100644
|
| --- a/Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| +++ b/Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| @@ -28,9 +28,9 @@
|
|
|
| namespace WebCore {
|
|
|
| -SpeechSynthesisUtterance* SpeechSynthesisUtterance::create(ExecutionContext* context, const String& text)
|
| +PassRefPtrWillBeRawPtr<SpeechSynthesisUtterance> SpeechSynthesisUtterance::create(ExecutionContext* context, const String& text)
|
| {
|
| - return adoptRefCountedGarbageCollected(new SpeechSynthesisUtterance(context, text));
|
| + return adoptRefWillBeRefCountedGarbageCollected(new SpeechSynthesisUtterance(context, text));
|
| }
|
|
|
| SpeechSynthesisUtterance::SpeechSynthesisUtterance(ExecutionContext* context, const String& text)
|
|
|