| 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 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 | 33 |
| 34 class WebSpeechRecognitionParams; | 34 class WebSpeechRecognitionParams; |
| 35 class WebSpeechRecognizerClient; | 35 class WebSpeechRecognizerClient; |
| 36 | 36 |
| 37 // Interface for speech recognition, to be implemented by the embedder. | 37 // Interface for speech recognition, to be implemented by the embedder. |
| 38 class WebSpeechRecognizer { | 38 class WebSpeechRecognizer { |
| 39 public: | 39 public: |
| 40 // Start speech recognition for the specified handle using the specified par
ameters. Notifications on progress, results, and errors will be sent via the cli
ent. | 40 // Start speech recognition for the specified handle using the specified par
ameters. Notifications on progress, results, and errors will be sent via the cli
ent. |
| 41 virtual void start(const WebSpeechRecognitionHandle&, const WebSpeechRecogni
tionParams&, WebSpeechRecognizerClient*) { BLINK_ASSERT_NOT_REACHED(); } | 41 virtual void start(const WebSpeechRecognitionHandle&, const WebSpeechRecogni
tionParams&, WebSpeechRecognizerClient*) = 0; |
| 42 | 42 |
| 43 // Stop speech recognition for the specified handle, returning any results f
or the audio recorded so far. Notifications and errors are sent via the client. | 43 // Stop speech recognition for the specified handle, returning any results f
or the audio recorded so far. Notifications and errors are sent via the client. |
| 44 virtual void stop(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClie
nt*) { BLINK_ASSERT_NOT_REACHED(); } | 44 virtual void stop(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClie
nt*) = 0; |
| 45 | 45 |
| 46 // Abort speech recognition for the specified handle, discarding any recorde
d audio. Notifications and errors are sent via the client. | 46 // Abort speech recognition for the specified handle, discarding any recorde
d audio. Notifications and errors are sent via the client. |
| 47 virtual void abort(const WebSpeechRecognitionHandle&, WebSpeechRecognizerCli
ent*) { BLINK_ASSERT_NOT_REACHED(); } | 47 virtual void abort(const WebSpeechRecognitionHandle&, WebSpeechRecognizerCli
ent*) = 0; |
| 48 | 48 |
| 49 protected: | 49 protected: |
| 50 virtual ~WebSpeechRecognizer() { } | 50 virtual ~WebSpeechRecognizer() { } |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 } // namespace blink | 53 } // namespace blink |
| 54 | 54 |
| 55 #endif // WebSpeechRecognizer_h | 55 #endif // WebSpeechRecognizer_h |
| OLD | NEW |