| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |