Index: Source/modules/speech/SpeechRecognitionEvent.h |
diff --git a/Source/modules/speech/SpeechRecognitionEvent.h b/Source/modules/speech/SpeechRecognitionEvent.h |
index 00072b3740e33ca5b67e8ac883d6c236bcc09b7c..f530397af5875e9afcb2601942f22e93c56aa194 100644 |
--- a/Source/modules/speech/SpeechRecognitionEvent.h |
+++ b/Source/modules/speech/SpeechRecognitionEvent.h |
@@ -27,6 +27,7 @@ |
#define SpeechRecognitionEvent_h |
#include "core/events/Event.h" |
+#include "heap/Handle.h" |
#include "modules/speech/SpeechRecognitionResult.h" |
#include "modules/speech/SpeechRecognitionResultList.h" |
#include "wtf/RefPtr.h" |
@@ -39,7 +40,7 @@ struct SpeechRecognitionEventInit : public EventInit { |
SpeechRecognitionEventInit(); |
unsigned long resultIndex; |
- RefPtr<SpeechRecognitionResultList> results; |
+ RefPtrWillBeRawPtr<SpeechRecognitionResultList> results; |
}; |
class SpeechRecognitionEvent FINAL : public Event { |
@@ -64,10 +65,10 @@ public: |
private: |
SpeechRecognitionEvent(); |
SpeechRecognitionEvent(const AtomicString&, const SpeechRecognitionEventInit&); |
- SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIndex, PassRefPtr<SpeechRecognitionResultList> results); |
+ SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIndex, PassRefPtrWillBeRawPtr<SpeechRecognitionResultList> results); |
unsigned long m_resultIndex; |
- RefPtr<SpeechRecognitionResultList> m_results; |
+ RefPtrWillBePersistent<SpeechRecognitionResultList> m_results; |
}; |
} // namespace WebCore |