diff options
Diffstat (limited to 'WebCore/platform/mock')
-rw-r--r-- | WebCore/platform/mock/SpeechInputClientMock.cpp | 2 | ||||
-rw-r--r-- | WebCore/platform/mock/SpeechInputClientMock.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/platform/mock/SpeechInputClientMock.cpp b/WebCore/platform/mock/SpeechInputClientMock.cpp index c3d74d1..6b64942 100644 --- a/WebCore/platform/mock/SpeechInputClientMock.cpp +++ b/WebCore/platform/mock/SpeechInputClientMock.cpp @@ -50,7 +50,7 @@ void SpeechInputClientMock::setListener(SpeechInputListener* listener) m_listener = listener; } -bool SpeechInputClientMock::startRecognition(int requestId) +bool SpeechInputClientMock::startRecognition(int requestId, const IntRect&) { if (m_timer.isActive()) return false; diff --git a/WebCore/platform/mock/SpeechInputClientMock.h b/WebCore/platform/mock/SpeechInputClientMock.h index 7d5fda2..ce83d3b 100644 --- a/WebCore/platform/mock/SpeechInputClientMock.h +++ b/WebCore/platform/mock/SpeechInputClientMock.h @@ -50,7 +50,7 @@ public: // SpeechInputClient methods. void setListener(SpeechInputListener*); - bool startRecognition(int); + bool startRecognition(int, const IntRect&); void stopRecording(int); void cancelRecognition(int); |