| Index: third_party/WebKit/Source/modules/speech/SpeechRecognition.h
|
| diff --git a/third_party/WebKit/Source/modules/speech/SpeechRecognition.h b/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
|
| index 17d8323e7a6fe111d176e6c4bcd1f0c5c1ae7c77..76616b47d03e281967daf1f6fc4edb77e206f903 100644
|
| --- a/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
|
| +++ b/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
|
| @@ -48,7 +48,7 @@ class SpeechRecognitionError;
|
|
|
| class MODULES_EXPORT SpeechRecognition final : public RefCountedGarbageCollectedEventTargetWithInlineData<SpeechRecognition>, public PageLifecycleObserver, public ActiveScriptWrappable, public ActiveDOMObject {
|
| REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(SpeechRecognition);
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SpeechRecognition);
|
| + USING_GARBAGE_COLLECTED_MIXIN(SpeechRecognition);
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static SpeechRecognition* create(ExecutionContext*);
|
| @@ -83,7 +83,7 @@ public:
|
| void didEndAudio();
|
| void didReceiveResults(const HeapVector<Member<SpeechRecognitionResult>>& newFinalResults, const HeapVector<Member<SpeechRecognitionResult>>& currentInterimResults);
|
| void didReceiveNoMatch(SpeechRecognitionResult*);
|
| - void didReceiveError(PassRefPtrWillBeRawPtr<SpeechRecognitionError>);
|
| + void didReceiveError(RawPtr<SpeechRecognitionError>);
|
| void didStart();
|
| void didEnd();
|
|
|
| @@ -124,7 +124,7 @@ private:
|
| bool m_interimResults;
|
| unsigned long m_maxAlternatives;
|
|
|
| - RawPtrWillBeMember<SpeechRecognitionController> m_controller;
|
| + Member<SpeechRecognitionController> m_controller;
|
| bool m_stoppedByActiveDOMObject;
|
| bool m_started;
|
| bool m_stopping;
|
|
|