diff options
Diffstat (limited to 'WebCore/page/SpeechInput.cpp')
-rw-r--r-- | WebCore/page/SpeechInput.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/page/SpeechInput.cpp b/WebCore/page/SpeechInput.cpp index 24b52d2..234791b 100644 --- a/WebCore/page/SpeechInput.cpp +++ b/WebCore/page/SpeechInput.cpp @@ -93,10 +93,10 @@ void SpeechInput::setRecognitionResult(int listenerId, const String& result) m_listeners.get(listenerId)->setRecognitionResult(listenerId, result); } -bool SpeechInput::startRecognition(int listenerId) +bool SpeechInput::startRecognition(int listenerId, const IntRect& elementRect) { ASSERT(m_listeners.contains(listenerId)); - return m_client->startRecognition(listenerId); + return m_client->startRecognition(listenerId, elementRect); } void SpeechInput::stopRecording(int listenerId) |