Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(353)

Side by Side Diff: Source/modules/speech/SpeechRecognitionResult.cpp

Issue 884973003: Extend PlatformSpeechSynthesizerMock with an utterance queue. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: minor test tidying Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * * Redistributions of source code must retain the above copyright 7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright 9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 19 matching lines...) Expand all
30 namespace blink { 30 namespace blink {
31 31
32 SpeechRecognitionResult* SpeechRecognitionResult::create(const HeapVector<Member <SpeechRecognitionAlternative>>& alternatives, bool final) 32 SpeechRecognitionResult* SpeechRecognitionResult::create(const HeapVector<Member <SpeechRecognitionAlternative>>& alternatives, bool final)
33 { 33 {
34 return new SpeechRecognitionResult(alternatives, final); 34 return new SpeechRecognitionResult(alternatives, final);
35 } 35 }
36 36
37 SpeechRecognitionAlternative* SpeechRecognitionResult::item(unsigned index) 37 SpeechRecognitionAlternative* SpeechRecognitionResult::item(unsigned index)
38 { 38 {
39 if (index >= m_alternatives.size()) 39 if (index >= m_alternatives.size())
40 return 0; 40 return nullptr;
41 41
42 return m_alternatives[index].get(); 42 return m_alternatives[index];
43 } 43 }
44 44
45 SpeechRecognitionResult::SpeechRecognitionResult(const HeapVector<Member<SpeechR ecognitionAlternative>>& alternatives, bool final) 45 SpeechRecognitionResult::SpeechRecognitionResult(const HeapVector<Member<SpeechR ecognitionAlternative>>& alternatives, bool final)
46 : m_final(final) 46 : m_final(final)
47 , m_alternatives(alternatives) 47 , m_alternatives(alternatives)
48 { 48 {
49 } 49 }
50 50
51 void SpeechRecognitionResult::trace(Visitor* visitor) 51 void SpeechRecognitionResult::trace(Visitor* visitor)
52 { 52 {
53 visitor->trace(m_alternatives); 53 visitor->trace(m_alternatives);
54 } 54 }
55 55
56 } // namespace blink 56 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/speech/SpeechRecognitionEvent.h ('k') | Source/modules/speech/SpeechRecognitionResultList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698