| Index: Source/modules/speech/SpeechRecognition.cpp
|
| diff --git a/Source/modules/speech/SpeechRecognition.cpp b/Source/modules/speech/SpeechRecognition.cpp
|
| index eed96414d64de564a7d88c8183ef74e10ac1ce5b..0f2d421b3728aad2000fd79a91d7dcfe5f2028a3 100644
|
| --- a/Source/modules/speech/SpeechRecognition.cpp
|
| +++ b/Source/modules/speech/SpeechRecognition.cpp
|
| @@ -39,7 +39,7 @@ namespace WebCore {
|
|
|
| PassRefPtrWillBeRawPtr<SpeechRecognition> SpeechRecognition::create(ExecutionContext* context)
|
| {
|
| - RefPtrWillBeRawPtr<SpeechRecognition> speechRecognition(adoptRefWillBeRefCountedGarbageCollected(new SpeechRecognition(context)));
|
| + RefPtrWillBeRawPtr<SpeechRecognition> speechRecognition = adoptRefWillBeNoop(new SpeechRecognition(context));
|
| speechRecognition->suspendIfNeeded();
|
| return speechRecognition.release();
|
| }
|
|
|