| 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 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef WebSpeechRecognizer_h | 26 #ifndef WebSpeechRecognizer_h |
| 27 #define WebSpeechRecognizer_h | 27 #define WebSpeechRecognizer_h |
| 28 | 28 |
| 29 #include "../platform/WebCommon.h" | 29 #include "../platform/WebCommon.h" |
| 30 #include "WebSpeechRecognitionHandle.h" | 30 #include "WebSpeechRecognitionHandle.h" |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 | 33 |
| 34 class WebSpeechGrammar; | |
| 35 class WebSpeechRecognitionParams; | 34 class WebSpeechRecognitionParams; |
| 36 class WebSpeechRecognizerClient; | 35 class WebSpeechRecognizerClient; |
| 37 | 36 |
| 38 // Interface for speech recognition, to be implemented by the embedder. | 37 // Interface for speech recognition, to be implemented by the embedder. |
| 39 class WebSpeechRecognizer { | 38 class WebSpeechRecognizer { |
| 40 public: | 39 public: |
| 41 // 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. |
| 42 virtual void start(const WebSpeechRecognitionHandle&, const WebSpeechRecogni
tionParams&, WebSpeechRecognizerClient*) { BLINK_ASSERT_NOT_REACHED(); } | 41 virtual void start(const WebSpeechRecognitionHandle&, const WebSpeechRecogni
tionParams&, WebSpeechRecognizerClient*) { BLINK_ASSERT_NOT_REACHED(); } |
| 43 | 42 |
| 44 // 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. |
| 45 virtual void stop(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClie
nt*) { BLINK_ASSERT_NOT_REACHED(); } | 44 virtual void stop(const WebSpeechRecognitionHandle&, WebSpeechRecognizerClie
nt*) { BLINK_ASSERT_NOT_REACHED(); } |
| 46 | 45 |
| 47 // 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. |
| 48 virtual void abort(const WebSpeechRecognitionHandle&, WebSpeechRecognizerCli
ent*) { BLINK_ASSERT_NOT_REACHED(); } | 47 virtual void abort(const WebSpeechRecognitionHandle&, WebSpeechRecognizerCli
ent*) { BLINK_ASSERT_NOT_REACHED(); } |
| 49 | 48 |
| 50 protected: | 49 protected: |
| 51 virtual ~WebSpeechRecognizer() { } | 50 virtual ~WebSpeechRecognizer() { } |
| 52 }; | 51 }; |
| 53 | 52 |
| 54 } // namespace blink | 53 } // namespace blink |
| 55 | 54 |
| 56 #endif // WebSpeechRecognizer_h | 55 #endif // WebSpeechRecognizer_h |
| OLD | NEW |