| 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 25 matching lines...) Expand all Loading... |
| 36 class Document; | 36 class Document; |
| 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 DEFINE_WRAPPERTYPEINFO(); |
| 48 public: | 48 public: |
| 49 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(); | 49 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(); |
| 50 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(const AtomicStr
ing&, const SpeechRecognitionEventInit&); | 50 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(const AtomicStr
ing&, const SpeechRecognitionEventInit&); |
| 51 virtual ~SpeechRecognitionEvent(); | 51 virtual ~SpeechRecognitionEvent(); |
| 52 | 52 |
| 53 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); |
| 54 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createNoMatch(SpeechRe
cognitionResult*); | 54 static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createNoMatch(SpeechRe
cognitionResult*); |
| 55 | 55 |
| 56 unsigned long resultIndex() const { return m_resultIndex; } | 56 unsigned long resultIndex() const { return m_resultIndex; } |
| 57 SpeechRecognitionResultList* results() const { return m_results.get(); } | 57 SpeechRecognitionResultList* results() const { return m_results.get(); } |
| 58 | 58 |
| 59 // These two methods are here to satisfy the specification which requires th
ese attrubutes to exist. | 59 // These two methods are here to satisfy the specification which requires th
ese attrubutes to exist. |
| 60 Document* interpretation() { return 0; } | 60 Document* interpretation() { return 0; } |
| 61 Document* emma() { return 0; } | 61 Document* emma() { return 0; } |
| 62 | 62 |
| 63 // Event | 63 // Event |
| 64 virtual const AtomicString& interfaceName() const OVERRIDE; | 64 virtual const AtomicString& interfaceName() const override; |
| 65 | 65 |
| 66 virtual void trace(Visitor*) OVERRIDE; | 66 virtual void trace(Visitor*) override; |
| 67 | 67 |
| 68 private: | 68 private: |
| 69 SpeechRecognitionEvent(); | 69 SpeechRecognitionEvent(); |
| 70 SpeechRecognitionEvent(const AtomicString&, const SpeechRecognitionEventInit
&); | 70 SpeechRecognitionEvent(const AtomicString&, const SpeechRecognitionEventInit
&); |
| 71 SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIn
dex, SpeechRecognitionResultList* results); | 71 SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIn
dex, SpeechRecognitionResultList* results); |
| 72 | 72 |
| 73 unsigned long m_resultIndex; | 73 unsigned long m_resultIndex; |
| 74 PersistentWillBeMember<SpeechRecognitionResultList> m_results; | 74 PersistentWillBeMember<SpeechRecognitionResultList> m_results; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace blink | 77 } // namespace blink |
| 78 | 78 |
| 79 #endif // SpeechRecognitionEvent_h | 79 #endif // SpeechRecognitionEvent_h |
| OLD | NEW |