| Index: Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| diff --git a/Source/modules/speech/SpeechSynthesisUtterance.cpp b/Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| index 840073f50c20311ca5d0befeaf51acc4c00b7762..2d98c03aec919979601b32fbc9bcc91a17941366 100644
|
| --- a/Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| +++ b/Source/modules/speech/SpeechSynthesisUtterance.cpp
|
| @@ -28,9 +28,9 @@
|
|
|
| namespace WebCore {
|
|
|
| -PassRefPtrWillBeRawPtr<SpeechSynthesisUtterance> SpeechSynthesisUtterance::create(ExecutionContext* context, const String& text)
|
| +SpeechSynthesisUtterance* SpeechSynthesisUtterance::create(ExecutionContext* context, const String& text)
|
| {
|
| - return adoptRefWillBeNoop(new SpeechSynthesisUtterance(context, text));
|
| + return adoptRefCountedGarbageCollectedWillBeNoop(new SpeechSynthesisUtterance(context, text));
|
| }
|
|
|
| SpeechSynthesisUtterance::SpeechSynthesisUtterance(ExecutionContext* context, const String& text)
|
|
|