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 28 matching lines...) Expand all Loading... |
39 if (index >= m_alternatives.size()) | 39 if (index >= m_alternatives.size()) |
40 return 0; | 40 return 0; |
41 | 41 |
42 return m_alternatives[index].get(); | 42 return m_alternatives[index].get(); |
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 ScriptWrappable::init(this); | |
50 } | 49 } |
51 | 50 |
52 void SpeechRecognitionResult::trace(Visitor* visitor) | 51 void SpeechRecognitionResult::trace(Visitor* visitor) |
53 { | 52 { |
54 visitor->trace(m_alternatives); | 53 visitor->trace(m_alternatives); |
55 } | 54 } |
56 | 55 |
57 } // namespace blink | 56 } // namespace blink |
OLD | NEW |