| Index: third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.cpp b/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.cpp
|
| index 94cdfe37146d0a2ca15cd611cd583e4e56562813..6a5e94e37e9dd68e7546a2182769d892f72bad20 100644
|
| --- a/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.cpp
|
| +++ b/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.cpp
|
| @@ -27,14 +27,14 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create()
|
| +RawPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create()
|
| {
|
| return adoptRefWillBeNoop(new SpeechSynthesisEvent);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create(const AtomicString& type, SpeechSynthesisUtterance* utterance, unsigned charIndex, float elapsedTime, const String& name)
|
| +RawPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create(const AtomicString& type, SpeechSynthesisUtterance* utterance, unsigned charIndex, float elapsedTime, const String& name)
|
| {
|
| - return adoptRefWillBeNoop(new SpeechSynthesisEvent(type, utterance, charIndex, elapsedTime, name));
|
| + return new SpeechSynthesisEvent(type, utterance, charIndex, elapsedTime, name);
|
| }
|
|
|
| SpeechSynthesisEvent::SpeechSynthesisEvent()
|
|
|