| 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 1d3d248817ffdb222afb11270af2364a7e58b177..649dda139486de831e30a237147335fbde25ccc5 100644
|
| --- a/third_party/WebKit/public/web/WebSpeechRecognizer.h
|
| +++ b/third_party/WebKit/public/web/WebSpeechRecognizer.h
|
| @@ -37,16 +37,21 @@ class WebSpeechRecognizerClient;
|
| // Interface for speech recognition, to be implemented by the embedder.
|
| 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.
|
| + // 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*) = 0;
|
|
|
| - // Stop speech recognition for the specified handle, returning any results for the audio recorded so far. Notifications and errors are sent via the client.
|
| + // 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*) = 0;
|
|
|
| - // Abort speech recognition for the specified handle, discarding any recorded audio. Notifications and errors are sent via the client.
|
| + // 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*) = 0;
|
|
|
|
|