Index: third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.cpp |
diff --git a/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.cpp b/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.cpp |
index e08557a02c1e01bb175416ca41e5b04d0d47061e..143368771802f77eefa5fa625b072ae82d3bafe0 100644 |
--- a/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.cpp |
+++ b/third_party/WebKit/Source/modules/speech/SpeechRecognitionEvent.cpp |
@@ -45,7 +45,7 @@ SpeechRecognitionEvent* SpeechRecognitionEvent::createNoMatch( |
SpeechRecognitionResult* result) { |
if (result) { |
HeapVector<Member<SpeechRecognitionResult>> results; |
- results.append(result); |
+ results.push_back(result); |
return new SpeechRecognitionEvent( |
EventTypeNames::nomatch, 0, |
SpeechRecognitionResultList::create(results)); |