| Index: third_party/WebKit/public/web/WebSpeechRecognizer.h
|
| diff --git a/third_party/WebKit/public/web/WebSpeechRecognizer.h b/third_party/WebKit/public/web/WebSpeechRecognizer.h
|
| index f43d5a6fa70577bc480b358a096584a806501c20..43b0a89a2ff5ec77e2cc6042b7072c2331f336cc 100644
|
| --- a/third_party/WebKit/public/web/WebSpeechRecognizer.h
|
| +++ b/third_party/WebKit/public/web/WebSpeechRecognizer.h
|
| @@ -38,13 +38,13 @@ class WebSpeechRecognizerClient;
|
| class WebSpeechRecognizer {
|
| public:
|
| // Start speech recognition for the specified handle using the specified parameters. Notifications on progress, results, and errors will be sent via the client.
|
| - virtual void start(const WebSpeechRecognitionHandle&, const WebSpeechRecognitionParams&, WebSpeechRecognizerClient*) { BLINK_ASSERT_NOT_REACHED(); }
|
| + virtual void start(const WebSpeechRecognitionHandle&, const WebSpeechRecognitionParams&, WebSpeechRecognizerClient*) { NOTREACHED(); }
|
|
|
| // Stop speech recognition for the specified handle, returning any results for the audio recorded so far. Notifications and errors are sent via the client.
|
| - virtual void stop(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClient*) { BLINK_ASSERT_NOT_REACHED(); }
|
| + virtual void stop(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClient*) { NOTREACHED(); }
|
|
|
| // Abort speech recognition for the specified handle, discarding any recorded audio. Notifications and errors are sent via the client.
|
| - virtual void abort(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClient*) { BLINK_ASSERT_NOT_REACHED(); }
|
| + virtual void abort(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClient*) { NOTREACHED(); }
|
|
|
| protected:
|
| virtual ~WebSpeechRecognizer() { }
|
|
|