| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 public: | 51 public: |
| 52 static SpeechRecognition* create(ExecutionContext*); | 52 static SpeechRecognition* create(ExecutionContext*); |
| 53 virtual ~SpeechRecognition(); | 53 virtual ~SpeechRecognition(); |
| 54 | 54 |
| 55 // SpeechRecognition.idl implemementation. | 55 // SpeechRecognition.idl implemementation. |
| 56 // Attributes. | 56 // Attributes. |
| 57 SpeechGrammarList* grammars() { return m_grammars; } | 57 SpeechGrammarList* grammars() { return m_grammars; } |
| 58 void setGrammars(SpeechGrammarList* grammars) { m_grammars = grammars; } | 58 void setGrammars(SpeechGrammarList* grammars) { m_grammars = grammars; } |
| 59 String lang() { return m_lang; } | 59 String lang() { return m_lang; } |
| 60 void setLang(const String& lang) { m_lang = lang; } | 60 void setLang(const String& lang) { m_lang = lang; } |
| 61 String serviceURI() { return m_serviceURI; } | |
| 62 void setServiceURI(const String& serviceURI) { m_serviceURI = serviceURI; } | |
| 63 bool continuous() { return m_continuous; } | 61 bool continuous() { return m_continuous; } |
| 64 void setContinuous(bool continuous) { m_continuous = continuous; } | 62 void setContinuous(bool continuous) { m_continuous = continuous; } |
| 65 bool interimResults() { return m_interimResults; } | 63 bool interimResults() { return m_interimResults; } |
| 66 void setInterimResults(bool interimResults) { m_interimResults = interimResu
lts; } | 64 void setInterimResults(bool interimResults) { m_interimResults = interimResu
lts; } |
| 67 unsigned maxAlternatives() { return m_maxAlternatives; } | 65 unsigned maxAlternatives() { return m_maxAlternatives; } |
| 68 void setMaxAlternatives(unsigned maxAlternatives) { m_maxAlternatives = maxA
lternatives; } | 66 void setMaxAlternatives(unsigned maxAlternatives) { m_maxAlternatives = maxA
lternatives; } |
| 69 MediaStreamTrack* audioTrack() { return m_audioTrack; } | 67 MediaStreamTrack* audioTrack() { return m_audioTrack; } |
| 70 void setAudioTrack(MediaStreamTrack* audioTrack) { m_audioTrack = audioTrack
; } | 68 void setAudioTrack(MediaStreamTrack* audioTrack) { m_audioTrack = audioTrack
; } |
| 71 | 69 |
| 72 // Callable by the user. | 70 // Callable by the user. |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 109 |
| 112 // PageLifecycleObserver | 110 // PageLifecycleObserver |
| 113 virtual void contextDestroyed() override; | 111 virtual void contextDestroyed() override; |
| 114 | 112 |
| 115 private: | 113 private: |
| 116 SpeechRecognition(Page*, ExecutionContext*); | 114 SpeechRecognition(Page*, ExecutionContext*); |
| 117 | 115 |
| 118 Member<SpeechGrammarList> m_grammars; | 116 Member<SpeechGrammarList> m_grammars; |
| 119 Member<MediaStreamTrack> m_audioTrack; | 117 Member<MediaStreamTrack> m_audioTrack; |
| 120 String m_lang; | 118 String m_lang; |
| 121 String m_serviceURI; | |
| 122 bool m_continuous; | 119 bool m_continuous; |
| 123 bool m_interimResults; | 120 bool m_interimResults; |
| 124 unsigned long m_maxAlternatives; | 121 unsigned long m_maxAlternatives; |
| 125 | 122 |
| 126 RawPtrWillBeMember<SpeechRecognitionController> m_controller; | 123 RawPtrWillBeMember<SpeechRecognitionController> m_controller; |
| 127 bool m_stoppedByActiveDOMObject; | 124 bool m_stoppedByActiveDOMObject; |
| 128 bool m_started; | 125 bool m_started; |
| 129 bool m_stopping; | 126 bool m_stopping; |
| 130 HeapVector<Member<SpeechRecognitionResult>> m_finalResults; | 127 HeapVector<Member<SpeechRecognitionResult>> m_finalResults; |
| 131 }; | 128 }; |
| 132 | 129 |
| 133 } // namespace blink | 130 } // namespace blink |
| 134 | 131 |
| 135 #endif // SpeechRecognition_h | 132 #endif // SpeechRecognition_h |
| OLD | NEW |