Chromium Code Reviews| Index: Source/modules/speech/SpeechRecognitionEvent.h |
| diff --git a/Source/modules/speech/SpeechRecognitionEvent.h b/Source/modules/speech/SpeechRecognitionEvent.h |
| index 7ab8eb66662a85409f093007c0c7a0f81a5e5e01..59d58a6b81cc9ccb120cb640f6250eddada6eebb 100644 |
| --- a/Source/modules/speech/SpeechRecognitionEvent.h |
| +++ b/Source/modules/speech/SpeechRecognitionEvent.h |
| @@ -38,12 +38,11 @@ namespace WebCore { |
| class Document; |
| class SpeechRecognitionEventInit : public EventInit { |
| - DISALLOW_ALLOCATION(); |
|
wibling-chromium
2014/03/24 08:18:37
It is a bit unfortunate that we cannot see this ob
zerny-chromium
2014/03/24 08:32:28
I agree, but requiring it to be added is too intru
|
| public: |
| SpeechRecognitionEventInit(); |
| unsigned long resultIndex; |
| - RefPtrWillBeRawPtr<SpeechRecognitionResultList> results; |
| + RefPtrWillBeMember<SpeechRecognitionResultList> results; |
| }; |
| class SpeechRecognitionEvent FINAL : public Event { |