| 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 6321aa6a44995cb600cd58112b8257941c541b9c..2c1690855abe3ca65a326565278279ad11f44991 100644
|
| --- a/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
|
| +++ b/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
|
| @@ -47,7 +47,7 @@ class SpeechRecognitionError;
|
|
|
| class MODULES_EXPORT SpeechRecognition final : public RefCountedGarbageCollectedEventTargetWithInlineData<SpeechRecognition>, public PageLifecycleObserver, 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*);
|
| @@ -82,7 +82,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();
|
|
|
| @@ -121,7 +121,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;
|
|
|