| 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 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 class SpeechRecognitionEventInit : public EventInit { | 38 class SpeechRecognitionEventInit : public EventInit { |
| 39 public: | 39 public: |
| 40 SpeechRecognitionEventInit(); | 40 SpeechRecognitionEventInit(); |
| 41 | 41 |
| 42 unsigned long resultIndex; | 42 unsigned long resultIndex; |
| 43 Member<SpeechRecognitionResultList> results; | 43 Member<SpeechRecognitionResultList> results; |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 class SpeechRecognitionEvent FINAL : public Event { | 46 class SpeechRecognitionEvent FINAL : public Event { |
| 47 DEFINE_WRAPPERTYPEINFO(); |
| 47 public: | 48 public: |
| 48 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(); | 49 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(); |
| 49 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(const AtomicStr
ing&, const SpeechRecognitionEventInit&); | 50 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(const AtomicStr
ing&, const SpeechRecognitionEventInit&); |
| 50 virtual ~SpeechRecognitionEvent(); | 51 virtual ~SpeechRecognitionEvent(); |
| 51 | 52 |
| 52 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createResult(unsigned
long resultIndex, const HeapVector<Member<SpeechRecognitionResult> >& results); | 53 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createResult(unsigned
long resultIndex, const HeapVector<Member<SpeechRecognitionResult> >& results); |
| 53 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createNoMatch(SpeechRe
cognitionResult*); | 54 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createNoMatch(SpeechRe
cognitionResult*); |
| 54 | 55 |
| 55 unsigned long resultIndex() const { return m_resultIndex; } | 56 unsigned long resultIndex() const { return m_resultIndex; } |
| 56 SpeechRecognitionResultList* results() const { return m_results.get(); } | 57 SpeechRecognitionResultList* results() const { return m_results.get(); } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 69 SpeechRecognitionEvent(const AtomicString&, const SpeechRecognitionEventInit
&); | 70 SpeechRecognitionEvent(const AtomicString&, const SpeechRecognitionEventInit
&); |
| 70 SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIn
dex, SpeechRecognitionResultList* results); | 71 SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIn
dex, SpeechRecognitionResultList* results); |
| 71 | 72 |
| 72 unsigned long m_resultIndex; | 73 unsigned long m_resultIndex; |
| 73 PersistentWillBeMember<SpeechRecognitionResultList> m_results; | 74 PersistentWillBeMember<SpeechRecognitionResultList> m_results; |
| 74 }; | 75 }; |
| 75 | 76 |
| 76 } // namespace blink | 77 } // namespace blink |
| 77 | 78 |
| 78 #endif // SpeechRecognitionEvent_h | 79 #endif // SpeechRecognitionEvent_h |
| OLD | NEW |