| Index: third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.h b/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.h
|
| index 015a14c3e9ee3f5da4405b52e014cbfa62b75784..c8f7bdb15c87fab5498ea23fecdc71494ca2f578 100644
|
| --- a/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.h
|
| +++ b/third_party/WebKit/Source/modules/speech/SpeechSynthesisEvent.h
|
| @@ -34,8 +34,8 @@ namespace blink {
|
| class SpeechSynthesisEvent final : public Event {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> create();
|
| - static PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> create(const AtomicString& type, SpeechSynthesisUtterance*, unsigned charIndex, float elapsedTime, const String& name);
|
| + static RawPtr<SpeechSynthesisEvent> create();
|
| + static RawPtr<SpeechSynthesisEvent> create(const AtomicString& type, SpeechSynthesisUtterance*, unsigned charIndex, float elapsedTime, const String& name);
|
|
|
| SpeechSynthesisUtterance* utterance() const { return m_utterance; }
|
| unsigned charIndex() const { return m_charIndex; }
|
| @@ -50,7 +50,7 @@ private:
|
| SpeechSynthesisEvent();
|
| SpeechSynthesisEvent(const AtomicString& type, SpeechSynthesisUtterance*, unsigned charIndex, float elapsedTime, const String& name);
|
|
|
| - PersistentWillBeMember<SpeechSynthesisUtterance> m_utterance;
|
| + Member<SpeechSynthesisUtterance> m_utterance;
|
| unsigned m_charIndex;
|
| float m_elapsedTime;
|
| String m_name;
|
|
|